From 2b116dec5435bc20d83be662f433944861cbcce1 Mon Sep 17 00:00:00 2001 From: semnil5202 Date: Wed, 6 Mar 2024 00:09:01 +0900 Subject: [PATCH] =?UTF-8?q?design:=20Dropdown=20=EA=B0=80=EB=A1=9C=20?= =?UTF-8?q?=EC=8A=A4=ED=81=AC=EB=A1=A4=20=EC=A0=9C=EA=B1=B0=20=EB=B0=8F=20?= =?UTF-8?q?=EB=B9=88=20=EC=83=81=ED=83=9C=EC=97=90=EC=84=9C=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20=ED=81=AC=EA=B8=B0=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dropdown/Dropdown.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dropdown/Dropdown.tsx b/src/components/Dropdown/Dropdown.tsx index b02c488..592ef80 100644 --- a/src/components/Dropdown/Dropdown.tsx +++ b/src/components/Dropdown/Dropdown.tsx @@ -110,12 +110,12 @@ const PanelWrapper = styled.ul` left: 0; bottom: 0; transform: translateY(calc(100% + 5px)); - width: -webkit-fill-available; + width: 100%; background-color: ${({ theme }) => theme.color.w1}; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); border-radius: 6px; max-height: 125px; - overflow: scroll; + overflow: auto; z-index: 1; `;