Make background colour consistent when page doesn't fully cover screen

This commit is contained in:
2026-01-22 10:31:52 +10:30
parent ca6f0de553
commit 9335d19031

View File

@@ -28,7 +28,7 @@ import MainHead from "@layouts/MainHead.astro";
<MainHead {title} {subtitle} {description} {image} /> <MainHead {title} {subtitle} {description} {image} />
<body class="flex min-h-svh flex-col"> <body class="flex min-h-svh flex-col">
<Navbar {navbarDisplay} /> <Navbar {navbarDisplay} />
<main class="grow"> <main class="grow bg-white dark:bg-gray-950">
<slot /> <slot />
</main> </main>
<Footer /> <Footer />