style: contenu pleine largeur — supprimer max-width sur main

Les cards occupent maintenant toute la largeur disponible avec juste
1.5rem de marge sur les côtés, quelle que soit la taille d'écran.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Alpinux 2026-05-06 11:22:55 +02:00
parent 1ba1b65283
commit 857539725f

View file

@ -50,7 +50,7 @@ header { background: var(--blue-dark); color: #fff; }
.btn-logout-icon:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
/* ── Mise en page ─────────────────────────────────────────────── */
main { max-width: 1400px; margin: 2rem auto; padding: 0 1.5rem 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
main { margin: 2rem 1.5rem; padding: 0 0 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
/* ── Carte générique ──────────────────────────────────────────── */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 1.8rem; }