agenda finition

This commit is contained in:
alma 2026-01-20 14:32:00 +01:00
parent 7b9ec235b2
commit 08d965db03
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ export default async function CalendarPage() {
return (
<div className="w-full h-full bg-white">
<div className="w-full h-full px-4 pt-12 pb-4 flex overflow-hidden">
<div className="w-full h-full px-4 pb-4 flex overflow-hidden">
<CalendarClient
initialCalendars={calendars}
userId={session.user.id}

View File

@ -228,7 +228,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou
}
onClick={!isSignInPage ? changeBackground : undefined}
>
<main className="flex-1">{children}</main>
<main className={isSignInPage ? "" : "flex-1 pt-12"}>{children}</main>
{!isSignInPage && isAuthenticated && <Footer />}
</div>
<Toaster />