From 47b93b6b5b25127b681fa28fe5d18eb2c1f6a0c3 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Thu, 1 Aug 2024 00:10:07 +0200 Subject: [PATCH] fix(UploadPicker): Do not hardcode the height but use the CSS variable Signed-off-by: Ferdinand Thiessen --- lib/components/UploadPicker.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/UploadPicker.vue b/lib/components/UploadPicker.vue index 32a6ae7e..2f5527c7 100644 --- a/lib/components/UploadPicker.vue +++ b/lib/components/UploadPicker.vue @@ -537,7 +537,7 @@ $progress-width: 200px; .upload-picker { display: inline-flex; align-items: center; - height: 44px; + height: var(--default-clickable-area); &__progress { width: $progress-width;