layout adjustments to fit screen height

This commit is contained in:
Nathaniel Tampus
2023-02-24 11:45:16 +08:00
parent 44d95f526e
commit 3ccbd57e8f
3 changed files with 51 additions and 44 deletions

View File

@@ -10,7 +10,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
<body>
<Navbar />
<main className="bg-base-200 mx-1 my-8 flex min-h-[70vh] justify-center rounded-3xl shadow-md md:mx-16 lg:mx-40">
<main className="bg-base-200 mx-1 flex min-h-[70vh] justify-center rounded-3xl shadow-md md:mx-16 lg:mx-40">
{children}
</main>