1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-02 16:08:31 +00:00
FrankerFaceZ/styles/widgets/check-box.scss

23 lines
398 B
SCSS
Raw Normal View History

.tw-checkbox__input {
&:indeterminate + .tw-checkbox__label {
&:before {
background: var(--color-twitch-purple-8);
border: 1px solid var(--color-twitch-purple-8);
}
&:after {
content: '';
display: block;
position: absolute;
top: 50%;
left: .4rem;
height: 0;
width: .8rem;
margin-top: -.1rem;
border-bottom: 2px solid #fff;
border-radius: 1rem;
}
}
}