fix(GRO-730): restore global scrollbar polish, scope WebKit hide to .scrollbar-hide utility

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Hugh Hackman
2026-05-03 18:11:29 +00:00
committed by Flea Flicker [agent]
parent 6c0cdb33fe
commit 39f5c83049
+16 -2
View File
@@ -67,10 +67,20 @@ input:focus, select:focus, textarea:focus {
/* ─── Scrollbar polish ─── */ /* ─── Scrollbar polish ─── */
::-webkit-scrollbar { ::-webkit-scrollbar {
display: none; width: 6px;
} }
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
display: none; background: #cbd5e1;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
} }
/* ─── Scrollbar hide utility ─── */ /* ─── Scrollbar hide utility ─── */
@@ -78,3 +88,7 @@ input:focus, select:focus, textarea:focus {
-ms-overflow-style: none; -ms-overflow-style: none;
scrollbar-width: none; scrollbar-width: none;
} }
.scrollbar-hide::-webkit-scrollbar {
display: none;
}