From efec2be46a562e8e7f7c9b63f89df7b65954d0f5 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 6 Mar 2024 17:20:12 +0100 Subject: [PATCH] fix(FilePicker): Adjust margin of view-selector to be consistent with filter input Signed-off-by: Ferdinand Thiessen --- lib/components/FilePicker/FilePickerNavigation.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/components/FilePicker/FilePickerNavigation.vue b/lib/components/FilePicker/FilePickerNavigation.vue index 62c4bc83..651ff1a2 100644 --- a/lib/components/FilePicker/FilePickerNavigation.vue +++ b/lib/components/FilePicker/FilePickerNavigation.vue @@ -87,6 +87,8 @@ const updateFilterValue = (value: string) => emit('update:filterString', value) min-width: 200px; // ensure focus outline is visible padding: 2px; + // align with input + margin-block-start: 7px; // make only the navigation scroll overflow: auto; @@ -109,7 +111,6 @@ const updateFilterValue = (value: string) => emit('update:filterString', value) &__side { flex-direction: row; min-width: unset; - } } }