refactor: shrinks checkbox

This commit is contained in:
2025-08-20 21:36:54 -03:00
parent 9ee7d193c4
commit bf87c90c6c

View File

@@ -12,10 +12,10 @@ label {
&:checked + .checkmark::after { &:checked + .checkmark::after {
content: ""; content: "";
position: absolute; position: absolute;
left: 11px; left: 6px;
bottom: 3px; bottom: 2px;
width: 6px; width: 3px;
height: 18px; height: 9px;
border: solid #0ea5e9; border: solid #0ea5e9;
border-width: 0 6px 6px 0; border-width: 0 6px 6px 0;
transform: rotate(45deg); transform: rotate(45deg);
@@ -30,8 +30,8 @@ label {
.checkmark { .checkmark {
display: inline-block; display: inline-block;
width: 24px; width: 16px;
height: 24px; height: 16px;
border: 1px solid #606463; border: 1px solid #606463;
position: relative; position: relative;
transition: all 0.3s ease; transition: all 0.3s ease;