From e5fe39e263137892bb4f9260ee2a498f64a73e52 Mon Sep 17 00:00:00 2001 From: Adrian Victor Date: Sun, 16 Aug 2026 18:10:51 -0300 Subject: [PATCH] Fix views overflowing on small viewports. --- web/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/style.css b/web/style.css index 387b52a..af6bb79 100644 --- a/web/style.css +++ b/web/style.css @@ -138,6 +138,8 @@ input:focus { .main-holder { display: flex; + width: 100%; + height: 100%; } ._scrollableView, ._scrollableContainer { @@ -145,6 +147,7 @@ input:focus { flex-direction: row; width: 100%; height: 100%; + min-width: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;