fix(heures) : titre drawer simplifié, bordure date noire, drawer au-dessus de la toolbar (z-index)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-08 18:05:17 +02:00
parent d04f4cb065
commit 8bf852d5ae
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<template> <template>
<div v-if="modelValue" class="fixed inset-0 z-50"> <div v-if="modelValue" class="fixed inset-0 z-[60]">
<Transition name="drawer-backdrop"> <Transition name="drawer-backdrop">
<div class="absolute inset-0 bg-black/40" @click="close" /> <div class="absolute inset-0 bg-black/40" @click="close" />
</Transition> </Transition>
@@ -1,5 +1,5 @@
<template> <template>
<AppDrawer v-model="drawerOpen" title="Export des heures (par jour)"> <AppDrawer v-model="drawerOpen" title="Export des heures">
<form class="space-y-4" @submit.prevent="handleSubmit"> <form class="space-y-4" @submit.prevent="handleSubmit">
<div> <div>
<label class="text-md font-semibold text-neutral-700" for="hours-export-date"> <label class="text-md font-semibold text-neutral-700" for="hours-export-date">
@@ -9,7 +9,7 @@
id="hours-export-date" id="hours-export-date"
v-model="selectedDate" v-model="selectedDate"
type="date" type="date"
class="mt-2 w-full rounded-md border border-neutral-300 px-3 py-2 text-md text-neutral-900" class="mt-2 w-full rounded-md border border-black px-3 py-2 text-md text-neutral-900"
> >
</div> </div>