Files
squoosh/src/components/checkbox/style.scss
2018-11-06 13:33:15 +00:00

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;
}