fix: scrollbar ui theme colors (#27455)

This commit is contained in:
Mees Frensel
2026-04-02 17:18:47 +02:00
committed by GitHub
parent 2166f07b1f
commit b465f2b58f

View File

@@ -128,25 +128,24 @@
/* Track */
html::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 16px;
background-color: var(--immich-ui-light-100);
border-radius: 4px;
}
/* Handle */
html::-webkit-scrollbar-thumb {
background: rgba(85, 86, 87, 0.408);
border-radius: 16px;
background-color: color-mix(in oklab, var(--immich-ui-light-600) 40%, transparent);
border-radius: 4px;
}
/* Handle on hover */
html::-webkit-scrollbar-thumb:hover {
background: #4250afad;
border-radius: 16px;
background-color: color-mix(in oklab, var(--immich-ui-primary-500) 70%, transparent);
}
body {
margin: 0;
color: #3a3a3a;
color: var(--immich-ui-dark);
}
body.asset-viewer-open {