Skip to content

Commit c75b6c3

Browse files
committed
fix: incrementally show the line
1 parent de09962 commit c75b6c3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

app/(main)/layout.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@ export default function RootLayout({
2121
}) {
2222
return (
2323
<html lang="en">
24-
<body className="font-martian-mono h-screen flex flex-col overflow-hidden">
24+
<body className="font-martian-mono">
2525
<NavBar />
26-
<main className="flex-grow overflow-y-scroll snap-mandatory snap-y scroll-smooth">
27-
{children}
28-
<Footer />
29-
</main>
26+
{children}
27+
<Footer />
3028
</body>
3129
</html>
3230
)

0 commit comments

Comments
 (0)