From 9dde34b6b75bb76f47be3ffeaecac534afdcef11 Mon Sep 17 00:00:00 2001 From: Richard Toth Date: Sat, 20 Jun 2026 11:56:25 +0200 Subject: [PATCH] prevent horizontal scroll in Chrome --- src/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles.css b/src/styles.css index 11cd1ac..f9965ce 100644 --- a/src/styles.css +++ b/src/styles.css @@ -19,3 +19,7 @@ 'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; } + +html { + overflow-x: hidden; +}