Skip to content

Commit 658fdce

Browse files
committed
wip
1 parent 5a029f0 commit 658fdce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/ally-personal/app/eprd-forum/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Qa = () => {
8383
}))
8484

8585
return (
86-
<div className="container mx-auto px-4 py-8">
86+
<div className="container mx-auto px-4 py-8 min-h-[70vh]">
8787
<h1 className="text-3xl md:text-4xl font-bold mb-8 text-center">
8888
EPRD Forum
8989
</h1>

apps/ally-personal/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export default function RootLayout({
1313
}>) {
1414
return (
1515
<html lang="en">
16-
<body className={inter.className}>
16+
<body className={`${inter.className} flex flex-col min-h-screen`}>
1717
<Navbar />
18-
{children}
18+
<main className="flex-1">{children}</main>
1919
<Footer />
2020
</body>
2121
<GoogleAnalytics gaId="G-6HZJF1Z64C" />

0 commit comments

Comments
 (0)