soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame
666 Bytes
@import "../../css/colors.css";
.checkbox {
appearance: none;
width: 18px;
height: 18px;
border-radius: 4px;
transition: .2s;
background-color: white;
transition-property: background-color;
background-size: 100%;
border: 1px solid rgb(92, 92, 92);
outline: none;
}
.checkbox:hover, .checkbox:focus, .checkbox:active, .checkbox:checked {
border-color: $motion-primary;
}
.checkbox:focus, .checkbox:active {
box-shadow: 0 0 0 3px $motion-transparent;
}
.checkbox:checked {
background-color: $motion-primary;
background-image: url("./checkbox.svg");
}
[theme="dark"] .checkbox {
border-color: transparent;
}