From 07fa1487f132b622bb9b907bdc6414014939b73e Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Thu, 17 Jul 2025 17:50:20 +0200 Subject: [PATCH] fix(ui): use consistent height variable for select and input elements --- scss/components/actor/_actor_properties.scss | 2 +- scss/components/shared/_form_group.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/components/actor/_actor_properties.scss b/scss/components/actor/_actor_properties.scss index 78edeb28..cfa631ad 100644 --- a/scss/components/actor/_actor_properties.scss +++ b/scss/components/actor/_actor_properties.scss @@ -26,7 +26,7 @@ &__property-select { width: 100%; - height: var(--form-field-height); + height: var(--input-height); } &__property-multi-input { diff --git a/scss/components/shared/_form_group.scss b/scss/components/shared/_form_group.scss index 12687e48..2a3032b3 100644 --- a/scss/components/shared/_form_group.scss +++ b/scss/components/shared/_form_group.scss @@ -22,6 +22,6 @@ &__label { flex: 2; - line-height: var(--form-field-height); + line-height: var(--input-height); } }