fix(ui): add light theme for mozilla in slider

This commit is contained in:
ArneBo 2025-04-02 12:42:48 +02:00
parent 2ad7b24396
commit 788cc73135
1 changed files with 3 additions and 1 deletions

View File

@ -172,8 +172,10 @@ onMounted(() => {
pointer-events: none; pointer-events: none;
} }
input[type="range"]::-moz-range-track { input[type="range"]::-moz-range-track {
background: var(--fw-gray-800);
border-radius: 8px; border-radius: 8px;
@include light-theme {
background: var(--fw-gray-400);
}
} }
.pin { .pin {
border-radius: 8px; border-radius: 8px;