This commit is contained in:
2026-03-22 14:20:07 +01:00
parent 76d0984b06
commit 8ddfe545d9
4 changed files with 36 additions and 30 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,7 +1,8 @@
<template> <template>
<div class="p-4 max-w-6xl mx-auto space-y-6"> <div class="max-w-6xl mx-auto">
<!-- ====== En-tête ====== --> <!-- ====== En-tête sticky ====== -->
<div class="sticky top-14 lg:top-0 z-20 bg-bg border-b border-bg-soft/60 px-4 pt-4 pb-3 space-y-3">
<div class="flex flex-col sm:flex-row sm:items-center justify-between gap-4"> <div class="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
<div> <div>
<h1 class="text-3xl font-bold text-green tracking-tight">Planning</h1> <h1 class="text-3xl font-bold text-green tracking-tight">Planning</h1>
@@ -32,9 +33,13 @@
</div> </div>
</div> </div>
<div class="text-yellow font-bold text-sm tracking-widest uppercase bg-yellow/5 px-4 py-1 rounded-full border border-yellow/10 self-start"> <div class="text-yellow font-bold text-sm tracking-widest uppercase bg-yellow/5 px-4 py-1 rounded-full border border-yellow/10 self-start inline-block">
{{ periodLabel }} {{ periodLabel }}
</div> </div>
</div>
<!-- ====== Contenu scrollable ====== -->
<div class="p-4 space-y-6">
<!-- ====== VUE CALENDRIER ====== --> <!-- ====== VUE CALENDRIER ====== -->
<template v-if="viewMode === 'calendar'"> <template v-if="viewMode === 'calendar'">
@@ -257,6 +262,7 @@
</div> </div>
</template> </template>
</div><!-- fin contenu scrollable -->
</div> </div>
</template> </template>