From a1300fff204bb3325045dde0c3481f425c095c51 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 29 Jan 2026 11:55:46 +0000 Subject: [PATCH] fix: hide tabbar scrollbar by setting width/height to 0 The no-scrollbar utility's display:none wasn't fully overriding the global scrollbar styles that set width/height to 8px. Adding explicit width:0 and height:0 ensures the scrollbar is completely hidden in WebKit browsers. https://claude.ai/code/session_018RiPf74GNf2oWcoYNRoZyx --- src/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.css b/src/index.css index f01bd41..47c64b4 100644 --- a/src/index.css +++ b/src/index.css @@ -308,6 +308,8 @@ &::-webkit-scrollbar { display: none; + width: 0; + height: 0; } } @@ -317,6 +319,8 @@ &::-webkit-scrollbar { display: none; + width: 0; + height: 0; } }