promote dev → uat: portal mobile overflow fix (GRO-730) #384

Merged
the-dogfather-cto[bot] merged 4 commits from dev into uat 2026-05-04 21:25:36 +00:00
Showing only changes of commit 39f5c83049 - Show all commits
+16 -2
View File
@@ -67,10 +67,20 @@ input:focus, select:focus, textarea:focus {
/* ─── Scrollbar polish ─── */
::-webkit-scrollbar {
display: none;
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
display: none;
background: #cbd5e1;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* ─── Scrollbar hide utility ─── */
@@ -78,3 +88,7 @@ input:focus, select:focus, textarea:focus {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}