style(frontend) : update timer and delete action colors

This commit is contained in:
Matthieu
2026-03-11 18:05:45 +01:00
parent 33f2bcc393
commit 2ffdaafd08
8 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
<button
class="flex w-full items-center justify-center gap-2 rounded-md px-4 py-2 text-sm font-semibold text-white transition"
:class="timerStore.isRunning
? 'bg-red-500 hover:bg-red-600'
? 'bg-[#F18619] hover:bg-[#d97314]'
: 'bg-primary-500 hover:bg-primary-600'"
:title="timerStore.isRunning ? 'Arrêter le timer' : 'Démarrer un timer'"
@click="timerStore.isRunning ? timerStore.stop() : timerStore.start()"