We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 351d927 commit d2202ffCopy full SHA for d2202ff
app/(app)/layout.tsx
@@ -78,13 +78,13 @@ export default async function RootLayout({
78
: null;
79
80
return (
81
- <div className="grid min-h-screen grid-rows-[auto_1fr_auto]">
+ <div className="flex flex-col min-h-screen">
82
<Nav
83
session={session}
84
algoliaSearchConfig={algoliaSearchConfig}
85
username={userData?.username || null}
86
/>
87
- <main className="w-full relative mx-auto max-w-2xl bg-neutral-100 dark:bg-black sm:mx-auto">
+ <main className="flex-grow w-full relative mx-auto max-w-2xl bg-neutral-100 dark:bg-black sm:mx-auto">
88
{children}
89
</main>
90
<Footer />
0 commit comments