From ac325db3c422de8d95dca77af85b7d893a196a21 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 22 Jan 2023 22:51:13 -0800 Subject: [PATCH] Fix alignment and padding --- components/Select/index.scss | 2 +- components/SelectItem/index.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Select/index.scss b/components/Select/index.scss index 032d9ea5..19426a62 100644 --- a/components/Select/index.scss +++ b/components/Select/index.scss @@ -5,7 +5,7 @@ border: none; display: flex; gap: $unit; - padding: $unit-2x $unit-2x; + padding: ($unit * 1.5) $unit-2x; &.modal { background-color: var(--select-modal-bg); diff --git a/components/SelectItem/index.scss b/components/SelectItem/index.scss index a07644d3..a7efa35f 100644 --- a/components/SelectItem/index.scss +++ b/components/SelectItem/index.scss @@ -1,4 +1,5 @@ .SelectItem { + align-items: center; border-radius: $item-corner; border: 2px solid transparent; color: var(--text-tertiary);