fix(ui): revert to descendant selector - tested working

- First commit (f3bb4ae) with space selector tested working
- Second commit broke the fix after bot suggestion
- Reverting to original approach
This commit is contained in:
chziyue
2026-04-06 18:05:09 +08:00
committed by Val Alexander
parent c8ff474c28
commit 76592217ff

View File

@@ -188,11 +188,12 @@
}
/* Scrollbar - visible on light backgrounds */
:root[data-theme-mode="light"]::-webkit-scrollbar-thumb {
:root[data-theme-mode="light"] ::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.15);
border-radius: var(--radius-full);
}
:root[data-theme-mode="light"]::-webkit-scrollbar-thumb:hover {
:root[data-theme-mode="light"] ::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.25);
}