<div class="custom-checkbox-button__square">
<div class="custom-checkbox-button__checkbox custom-checkbox-button__checkbox--selected"></div>
</div>
...
</label>CSS
.custom-checkbox-button {
align-items: center;
display: inline-flex;
cursor: pointer;
}
.custom-checkbox-button__input {
display: none;
}
.custom-checkbox-button__square {
border: 1px solid #d1d5db;
border-radius: 0.25rem;
margin-right: 0.5rem;
padding: 0.25rem;
}
.custom-checkbox-button__checkbox {
background-color: transparent;
border-radius: 0.25rem;
height: 1rem;
width: 1rem;
}
.custom-checkbox-button__checkbox--selected {
background-color: #3b82f6;
}
See also