fix: force scrollbar visibility to prevent layout shift on tall pages
Build & Deploy / build-and-deploy (push) Successful in 56s

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.
This commit is contained in:
Hermes Agent
2026-05-29 23:23:25 +02:00
parent ab1ba503ff
commit e2dca1db39
+2
View File
@@ -61,6 +61,8 @@ body {
color: var(--text); color: var(--text);
min-height: 100vh; min-height: 100vh;
line-height: 1.6; line-height: 1.6;
overflow-y: scroll;
overflow-x: hidden;
} }
a { a {