mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-14 01:37:26 +00:00
23 lines
288 B
CSS
23 lines
288 B
CSS
.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: var(--main-theme-color);
|
|
}
|