react-elegant-ui
Version:
Elegant UI components, made by BEM best practices for react
20 lines (17 loc) • 308 B
CSS
.Checkbox .Checkbox-Tick {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
.Checkbox:not(.Checkbox_checked) .Checkbox-Tick {
visibility: hidden;
}
.Checkbox-Icon {
width: 100%;
height: 100%;
}