From 49761f91123620a38b3c7bb0c24ad7c887282aab Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 18 Jun 2023 00:06:46 -0700 Subject: [PATCH] Add darker shadow to Select --- components/common/Select/index.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/common/Select/index.scss b/components/common/Select/index.scss index 170dba71..ddf1fade 100644 --- a/components/common/Select/index.scss +++ b/components/common/Select/index.scss @@ -75,8 +75,8 @@ .Select { background: var(--dialog-bg); border-radius: $card-corner; - border: $hover-stroke; - box-shadow: $hover-shadow; + border: 1px solid rgba(0, 0, 0, 0.24); + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16); padding: 0 $unit; z-index: 40; min-width: var(--radix-select-trigger-width);