From e2dca1db392e3420db067723a689eeed69c5e663 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 29 May 2026 23:23:25 +0200 Subject: [PATCH] fix: force scrollbar visibility to prevent layout shift on tall pages Add overflow-y: scroll to body so the scrollbar is always present, preventing the ~15px layout shift when a page exceeds viewport height (e.g., games with long descriptions). Also add overflow-x: hidden to guard against any horizontal overflow breaking the layout. --- frontend/src/app.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app.css b/frontend/src/app.css index 82ef839..5d706eb 100644 --- a/frontend/src/app.css +++ b/frontend/src/app.css @@ -61,6 +61,8 @@ body { color: var(--text); min-height: 100vh; line-height: 1.6; + overflow-y: scroll; + overflow-x: hidden; } a {