24 lines
314 B
SCSS
Raw Permalink Normal View History

2024-07-12 12:51:02 +05:45
// Sider color variations
@mixin slider-color-variant($color) {
.noUi-base {
.noUi-connect {
background: $color;
}
.noUi-origin {
background: $color;
.noUi-handle {
&:after {
background: $color;
}
.noUi-tooltip {
background: $color;
color: $white;
}
}
}
}
}