diff --git a/ui/src/App.vue b/ui/src/App.vue index 5b8edf1..2183a0a 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -1,5 +1,5 @@ @@ -73,4 +86,26 @@ watchEffect(() => { diff --git a/ui/src/components/asistencias/cardAsistencia.vue b/ui/src/components/asistencias/cardAsistencia.vue index 5a2c389..f5a14b7 100644 --- a/ui/src/components/asistencias/cardAsistencia.vue +++ b/ui/src/components/asistencias/cardAsistencia.vue @@ -1,5 +1,5 @@ - @@ -137,5 +117,11 @@ const deleteEmployeeInternal = async (employeeId: string | number) => { object-fit: cover; /* Ensures avatar images are displayed nicely */ } -/* Icon transition style removed to align with tablaPlanillas.vue */ +/* Optional: Keep icon transition if not handled by Tailwind's transition utilities on the button */ +button svg { + transition: transform 0.15s ease-in-out; +} +button:hover svg { + transform: scale(1.1); /* Adjusted scale for a subtler effect */ +} diff --git a/ui/src/components/planillas/cardPlanilla.vue b/ui/src/components/planillas/cardPlanilla.vue index 92f7fe0..7d610b2 100644 --- a/ui/src/components/planillas/cardPlanilla.vue +++ b/ui/src/components/planillas/cardPlanilla.vue @@ -1,5 +1,5 @@