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
This commit is contained in:
Claude
2026-01-29 11:55:46 +00:00
parent 0b3c657705
commit a1300fff20

View File

@@ -308,6 +308,8 @@
&::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
}
@@ -317,6 +319,8 @@
&::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
}