Skip to content
Open
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
8 changes: 3 additions & 5 deletions app/(main)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className="font-martian-mono h-screen flex flex-col overflow-hidden">
<body className="font-martian-mono">
<NavBar />
<main className="flex-grow overflow-y-scroll snap-mandatory snap-y scroll-smooth">
{children}
<Footer />
</main>
{children}
<Footer />
</body>
</html>
)
Expand Down