From 0bfe6336f011b9ec728d30070014dd2af9e0ab96 Mon Sep 17 00:00:00 2001 From: Alpinux Date: Wed, 6 May 2026 11:04:38 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20scrollbar=20permanente=20pour=20=C3=A9vi?= =?UTF-8?q?ter=20le=20d=C3=A9calage=20de=20largeur=20entre=20pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- app/static/app.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/static/app.css b/app/static/app.css index 25761b8..142e907 100644 --- a/app/static/app.css +++ b/app/static/app.css @@ -11,6 +11,7 @@ } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } +html { overflow-y: scroll; } /* scrollbar toujours présente → pas de décalage entre pages */ body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; } main { flex: 1; } a { color: var(--blue); text-decoration: none; }