6 lines
107 B
SCSS
6 lines
107 B
SCSS
@mixin switch-variant($color) {
|
|
input:checked + label::before {
|
|
background-color: $color;
|
|
}
|
|
}
|