taro-manage-layout
Version:
29 lines (26 loc) • 629 B
CSS
.checkbox-container {
width: 10px;
height: 10px;
border-radius: 3px;
border: 1px solid rgba(100, 100, 100, 0.1);
background-color: #F1F1F1;
transition: 0.3s;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.checkbox-container.checked {
background-color: #4096FF;
}
.checkbox-container.part {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #FFFFFF;
}
.checkbox-container .checked {
width: 6px;
height: 6px;
border-radius: 1.5px;
background-color: #4096FF;
transition: 0.3s;
}