mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
28 lines
No EOL
540 B
Text
28 lines
No EOL
540 B
Text
.checkbox-container {
|
|
position: relative;
|
|
z-index: 0;
|
|
|
|
&:global(.checked) {
|
|
.icon {
|
|
padding: calc(0.1 * var(--icon-size));
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
display: block;
|
|
width: var(--icon-size);
|
|
height: var(--icon-size);
|
|
fill: var(--icon-color);
|
|
background-color: var(--icon-background-color);
|
|
}
|
|
|
|
.native-checkbox {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
z-index: -1;
|
|
}
|
|
} |