From 8214c33fc31a73b091c022127606699d94731d03 Mon Sep 17 00:00:00 2001 From: Jordan Jensen Date: Tue, 14 Jan 2025 16:57:46 -0800 Subject: [PATCH] Correct quick-pick-detail margin-bottom --- .../webviews/homeView/src/components/QuickPickItem.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/extensions/vscode/webviews/homeView/src/components/QuickPickItem.vue b/extensions/vscode/webviews/homeView/src/components/QuickPickItem.vue index a98c960e1..2a740209f 100644 --- a/extensions/vscode/webviews/homeView/src/components/QuickPickItem.vue +++ b/extensions/vscode/webviews/homeView/src/components/QuickPickItem.vue @@ -56,6 +56,12 @@ defineProps<{ } } + &:not(:last-child) { + .quick-pick-detail { + margin-bottom: 2px; + } + } + .quick-pick-icon { vertical-align: text-bottom; padding-right: 6px; @@ -95,10 +101,6 @@ defineProps<{ text-overflow: ellipsis; white-space: pre; - &:not(:last-child) { - margin-bottom: 2px; - } - .quick-pick-icon { font-size: var(--vscode-font-size); }