From ec9c4cf6ce7019f748283c1ba0b19b431496b61f Mon Sep 17 00:00:00 2001 From: David Newell Date: Mon, 20 Nov 2023 17:25:01 +0000 Subject: [PATCH] fix(lemon-ui): Clearable side action button sizing (#18755) --- .../lib/lemon-ui/LemonSelect/LemonSelect.scss | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.scss b/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.scss index 1e9684ab3cc16..fdcd0a1577f6c 100644 --- a/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.scss +++ b/frontend/src/lib/lemon-ui/LemonSelect/LemonSelect.scss @@ -1,8 +1,15 @@ -.LemonSelect--button--clearable { - padding-left: 0.5rem !important; - margin-left: auto; -} - .LemonSelect--clearable { padding-right: 0 !important; + + > span { + padding-right: 0 !important; + } + + .LemonButton__content { + gap: 0.5rem; + + .LemonSelect--button--clearable { + margin-left: auto; + } + } }