freegpt-webui / client /css /checkbox.css
monra's picture
Refactor CSS and HTML
82b391b
raw
history blame
191 Bytes
input[type="checkbox"] {
height: 0;
width: 0;
display: none;
}
input:checked + label {
background: var(--blur-border);
}
input:checked + label:after {
left: calc(100% - 5px - 20px);
}