umami/components/common/Checkbox.module.css
2020-08-15 01:17:15 -07:00

28 lines
369 B
CSS

.container {
display: flex;
align-items: center;
overflow: hidden;
}
.checkbox {
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
border: 1px solid var(--gray500);
border-radius: 4px;
}
.label {
margin-left: 10px;
}
.input {
position: absolute;
height: 0;
width: 0;
bottom: -1px;
right: -1px;
}