From 14e9c16310931b49af34581b20ed61fee994c157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoni=20Nu=C3=B1ez=20Romeu?= Date: Fri, 5 Jun 2026 23:08:05 +0200 Subject: [PATCH] Fixed html body --- frontend/src/index.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index 732fc83..b764d41 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -34,8 +34,12 @@ box-sizing: border-box; } -html, body { +html { overscroll-behavior: none; + overflow-x: clip; +} + +body { overflow-x: hidden; }