mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-21 22:41:46 +00:00
28 lines
No EOL
489 B
Text
28 lines
No EOL
489 B
Text
.checkbox-container {
|
|
position: relative;
|
|
z-index: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--background-color);
|
|
|
|
.icon {
|
|
height: 100%;
|
|
fill: var(--icon-color);
|
|
}
|
|
|
|
.native-checkbox {
|
|
position: absolute;
|
|
opacity: 0;
|
|
height: 0;
|
|
width: 0;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&:global(.checked) {
|
|
.icon {
|
|
padding: 10%;
|
|
}
|
|
}
|
|
} |