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 5a029f0 commit 658fdceCopy full SHA for 658fdce
apps/ally-personal/app/eprd-forum/page.tsx
@@ -83,7 +83,7 @@ const Qa = () => {
83
}))
84
85
return (
86
- <div className="container mx-auto px-4 py-8">
+ <div className="container mx-auto px-4 py-8 min-h-[70vh]">
87
<h1 className="text-3xl md:text-4xl font-bold mb-8 text-center">
88
EPRD Forum
89
</h1>
apps/ally-personal/app/layout.tsx
@@ -13,9 +13,9 @@ export default function RootLayout({
13
}>) {
14
15
<html lang="en">
16
- <body className={inter.className}>
+ <body className={`${inter.className} flex flex-col min-h-screen`}>
17
<Navbar />
18
- {children}
+ <main className="flex-1">{children}</main>
19
<Footer />
20
</body>
21
<GoogleAnalytics gaId="G-6HZJF1Z64C" />
0 commit comments