🎨 style(template): Met à jour la couleur du hover dans la navigation pour une meilleure visibilité.

This commit is contained in:
Serreau Jovann
2026-01-27 09:09:28 +01:00
parent 216ef477ac
commit bce9930511
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
<div class="max-w-7xl mx-auto pt-16 pb-8 px-4 text-center">
<nav class="flex justify-center space-x-4 text-[10px] mb-8 uppercase tracking-[0.3em] font-black italic">
{# Correction : text-slate-400 -> text-slate-600 #}
<a href="{{ url('reservation') }}" class="text-slate-600 hover:text-blue-600 transition">ACCUEIL</a>
<a href="{{ url('reservation') }}" class="text-slate-600 hover:text-[#fc0e50] transition">ACCUEIL</a>
{# Correction : text-slate-300 -> text-slate-500 #}
<span class="text-slate-500">/</span>
{# Correction : text-amber-500 -> text-amber-700 (Contraste sur fond gris) #}

View File

@@ -54,9 +54,9 @@
{# --- NAVIGATION / BREADCRUMB --- #}
<div class="max-w-7xl mx-auto pt-16 pb-8 px-4 text-center">
<nav class="flex justify-center space-x-4 text-[10px] mb-8 uppercase tracking-[0.3em] font-black italic">
<a href="{{ url('reservation') }}" class="text-slate-400 hover:text-blue-600 transition">ACCUEIL</a>
<a href="{{ url('reservation') }}" class="text-slate-400 hover:text-[#fc0e50] transition">ACCUEIL</a>
<span class="text-slate-300">/</span>
<a href="{{ url('reservation_catalogue') }}" class="text-slate-400 hover:text-blue-600 transition">Catalogue</a>
<a href="{{ url('reservation_catalogue') }}" class="text-slate-400 hover:text-[#fc0e50] transition">Catalogue</a>
<span class="text-slate-300">/</span>
<span class="text-amber-500 underline decoration-2 underline-offset-4">{{ product.name }}</span>
</nav>