stremio-web/src/common/Checkbox/styles.less
2019-01-29 14:30:49 +02:00

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