fix(time-tracking) : keep calendar header sticky below page header

This commit is contained in:
Matthieu
2026-03-11 18:04:57 +01:00
parent f9d4de3e33
commit 33f2bcc393
3 changed files with 71 additions and 21 deletions

View File

@@ -98,9 +98,12 @@
<div class="h-full flex-1 overflow-hidden flex flex-col">
<AppTopNav :user="auth.user" />
<main class="flex-1 overflow-y-auto px-16 py-24">
<slot/>
</main>
<div class="relative flex-1 overflow-hidden bg-white">
<div aria-hidden="true" class="pointer-events-none absolute inset-x-0 top-0 z-50 h-12 bg-white" />
<main class="h-full overflow-y-auto px-16 pt-12 pb-24">
<slot/>
</main>
</div>
</div>
</div>