From 6a3930c36edff59517aaa54da3fa51dcb99058a3 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Sun, 2 Feb 2025 12:55:00 -0300 Subject: [PATCH] fix: css for checkbox --- .../src/components/checkbox-field/checkbox-field.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/renderer/src/components/checkbox-field/checkbox-field.scss b/src/renderer/src/components/checkbox-field/checkbox-field.scss index fb8b4131..85ab4149 100644 --- a/src/renderer/src/components/checkbox-field/checkbox-field.scss +++ b/src/renderer/src/components/checkbox-field/checkbox-field.scss @@ -15,6 +15,8 @@ &__checkbox { width: 20px; height: 20px; + min-width: 20px; + min-height: 20px; border-radius: 4px; background-color: globals.$dark-background-color; display: flex; @@ -45,6 +47,9 @@ &__label { cursor: pointer; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; &:has(+ input:disabled) { cursor: not-allowed;