Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,7 @@ details > summary {

@tailwind utilities;
/* purgecss end ignore */

#container{
overflow-x: hidden;
}