From 875983f4401993674b3e914f75abbf0efafdb0c5 Mon Sep 17 00:00:00 2001 From: deun Date: Fri, 29 Nov 2024 09:49:24 +0900 Subject: [PATCH 1/3] =?UTF-8?q?design:=20=ED=97=A4=EB=8D=94=20=EB=A1=9C?= =?UTF-8?q?=EA=B3=A0=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EC=83=89=EC=83=81=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20(#149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/ui/logo/styles.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/ui/logo/styles.module.scss b/shared/ui/logo/styles.module.scss index 3c3c453b..0723ec53 100644 --- a/shared/ui/logo/styles.module.scss +++ b/shared/ui/logo/styles.module.scss @@ -11,6 +11,6 @@ .text { width: 142px; - color: $color-gray-500; + color: $color-gray-800; line-height: normal; } From 73f4f3e4ad962d519dcc8b6d73a2ecb440fd22d0 Mon Sep 17 00:00:00 2001 From: deun Date: Fri, 29 Nov 2024 09:55:28 +0900 Subject: [PATCH 2/3] =?UTF-8?q?design:=20=EB=84=A4=EB=B9=84=EA=B2=8C?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20zIndex=20=EC=88=98=EC=A0=95=20(#149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/styles/base/_variables.scss | 1 + shared/ui/side-navigation/styles.module.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/shared/styles/base/_variables.scss b/shared/styles/base/_variables.scss index 59b6585b..445e9826 100644 --- a/shared/styles/base/_variables.scss +++ b/shared/styles/base/_variables.scss @@ -61,6 +61,7 @@ $breakpoint-xl: 1200px; /* Z-index */ $z-index: ( modal: 1000, + navbar: 200, header: 100, select: 10, base: 1, diff --git a/shared/ui/side-navigation/styles.module.scss b/shared/ui/side-navigation/styles.module.scss index 131f77ff..231e10f2 100644 --- a/shared/ui/side-navigation/styles.module.scss +++ b/shared/ui/side-navigation/styles.module.scss @@ -9,7 +9,7 @@ border-right: 1px solid $color-gray-200; background-color: $color-gray-100; transition: width 0.2s ease; - z-index: zIndex(base); + z-index: zIndex(navbar); cursor: pointer; From b9d35a229758d59e98df3440779153a474d2213a Mon Sep 17 00:00:00 2001 From: deun Date: Fri, 29 Nov 2024 10:02:26 +0900 Subject: [PATCH 3/3] =?UTF-8?q?design:=20select=20=EC=98=B5=EC=85=98=20?= =?UTF-8?q?=EC=B5=9C=EB=8C=80=20=EB=86=92=EC=9D=B4=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?(#149)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/ui/dropdown/styles.module.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shared/ui/dropdown/styles.module.scss b/shared/ui/dropdown/styles.module.scss index 5ad792c0..15ccf8da 100644 --- a/shared/ui/dropdown/styles.module.scss +++ b/shared/ui/dropdown/styles.module.scss @@ -82,14 +82,16 @@ $color-selected-text: #171717; border-radius: 4px; background-color: $color-white; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25); - overflow: hidden; + overflow-y: auto; &.small { width: $small-width; + max-height: 180px; } &.large { width: $large-width; + max-height: 200px; } }