CSS bug fixes and accessibility improvements #8

Merged
DorianNiemiecSVRJS merged 16 commits from main into main 2024-07-29 22:20:35 +02:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 8e1b93721a - Show all commits

View file

@ -38,10 +38,10 @@ export default function PageLayout({
children: React.ReactNode;
}) {
return (
<main className="flex flex-col min-h-screen">
<div className="flex flex-col min-h-screen">
<Navbar />
<div className="flex-grow flex-1 overflow-x-hidden">{children}</div>
<Footer />
</main>
</div>
);
}

View file

@ -30,7 +30,7 @@ export default function RootLayout({
disableTransitionOnChange
>
<AuthProvider>
<main>{children}</main>
{children}
<Toaster />
</AuthProvider>
</ThemeProvider>