From 857539725fc8d735236e27d7dd47f0960d50064f Mon Sep 17 00:00:00 2001 From: Alpinux Date: Wed, 6 May 2026 11:22:55 +0200 Subject: [PATCH] =?UTF-8?q?style:=20contenu=20pleine=20largeur=20=E2=80=94?= =?UTF-8?q?=20supprimer=20max-width=20sur=20main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- app/static/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/app.css b/app/static/app.css index 643208c..253c92e 100644 --- a/app/static/app.css +++ b/app/static/app.css @@ -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; }