Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Horizontal scrolling Problem in the website #3916 #3939

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitpod.yml
@@ -0,0 +1,11 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: yarn install && yarn run build
command: yarn run dev


2 changes: 1 addition & 1 deletion .vscode/settings.json
Expand Up @@ -2,6 +2,6 @@
"typescript.tsdk": "node_modules/typescript/lib",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
}
2 changes: 1 addition & 1 deletion website/src/components/Nav.tsx
Expand Up @@ -8,7 +8,7 @@ import { Logo } from './Logo';
export const Nav: React.FC = () => {
const router = useRouter();
return (
<div className="bg-white border-b border-gray-200">
<div className="bg-white border-b border-gray-200 ">
<div className="container px-4 lg:px-0 mx-auto">
<div className="grid grid-cols-1 md:grid-cols-12 md:gap-8">
<div className="md:col-span-3 flex items-center justify-between h-16">
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/_app.js
Expand Up @@ -4,10 +4,10 @@ import { Analytics } from '@vercel/analytics/react';

function MyApp({ Component, pageProps }) {
return (
<>
<div id='container'>
<Component {...pageProps} />
<Analytics />
</>
</div>
);
}

Expand Down
4 changes: 4 additions & 0 deletions website/src/styles/index.css
Expand Up @@ -190,3 +190,7 @@ details > summary {

@tailwind utilities;
/* purgecss end ignore */

#container{
overflow-x: hidden;
}