From bf87c90c6c05efffe7f97358aab2866a1cb64cd9 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Wed, 20 Aug 2025 21:36:54 -0300 Subject: [PATCH] refactor: shrinks checkbox --- .../src/lib/atoms/checkbox/checkbox.component.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.css b/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.css index eca7425..8da5e6c 100644 --- a/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.css +++ b/projects/my-wallet-ds/src/lib/atoms/checkbox/checkbox.component.css @@ -12,10 +12,10 @@ label { &:checked + .checkmark::after { content: ""; position: absolute; - left: 11px; - bottom: 3px; - width: 6px; - height: 18px; + left: 6px; + bottom: 2px; + width: 3px; + height: 9px; border: solid #0ea5e9; border-width: 0 6px 6px 0; transform: rotate(45deg); @@ -30,8 +30,8 @@ label { .checkmark { display: inline-block; - width: 24px; - height: 24px; + width: 16px; + height: 16px; border: 1px solid #606463; position: relative; transition: all 0.3s ease;