_switch.scss
ASCII text
1/* Switches */ 2 3.toggle-switch { 4color: inherit; 5width: 40px; 6height: 24px; 7background-size: contain; 8background-image: url("assets/toggle-off.svg"); 9 10&:checked { 11background-image: url("assets/toggle-on.svg"); 12} 13} 14