ui: fix light scrollbar selector

This commit is contained in:
Val Alexander
2026-04-06 20:49:01 -05:00
committed by Val Alexander
parent 76592217ff
commit f0ba7b95da
2 changed files with 5 additions and 3 deletions

View File

@@ -188,12 +188,13 @@
}
/* Scrollbar - visible on light backgrounds */
:root[data-theme-mode="light"] ::-webkit-scrollbar-thumb {
:root[data-theme="light"]::-webkit-scrollbar-thumb,
:root[data-theme="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="light"]::-webkit-scrollbar-thumb:hover,
:root[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.25);
}