forked from external-repos/squoosh
23 lines
272 B
SCSS
23 lines
272 B
SCSS
.checkbox {
|
|
display: inline-block;
|
|
position: relative;
|
|
--size: 17px;
|
|
}
|
|
|
|
.real-checkbox {
|
|
top: 0;
|
|
position: absolute;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.icon {
|
|
display: block;
|
|
width: var(--size);
|
|
height: var(--size);
|
|
}
|
|
|
|
.checked {
|
|
fill: #34B9EB;
|
|
}
|