From 4039bf15919d764ef84b8ef624ddb17112ec2bf0 Mon Sep 17 00:00:00 2001 From: semnil5202 Date: Tue, 5 Mar 2024 23:01:47 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=EC=9E=98=EB=AA=BB=EB=90=9C=20SVG=20?= =?UTF-8?q?component=20export=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/svg/feed/like.svg | 4 ++-- src/stories/SVGFeed.stories.tsx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/assets/svg/feed/like.svg b/src/assets/svg/feed/like.svg index 56f6150..90cdb2d 100644 --- a/src/assets/svg/feed/like.svg +++ b/src/assets/svg/feed/like.svg @@ -1,3 +1,3 @@ - - + + diff --git a/src/stories/SVGFeed.stories.tsx b/src/stories/SVGFeed.stories.tsx index 55d9061..96a4d81 100644 --- a/src/stories/SVGFeed.stories.tsx +++ b/src/stories/SVGFeed.stories.tsx @@ -37,7 +37,6 @@ export const Default: Story = { - ), From 86c803df800aa365d21eced7a4fbf048c1bdaa26 Mon Sep 17 00:00:00 2001 From: semnil5202 Date: Wed, 6 Mar 2024 00:08:19 +0900 Subject: [PATCH 2/3] =?UTF-8?q?docs:=20contributor=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 82cf096..f12eec2 100644 --- a/README.md +++ b/README.md @@ -270,6 +270,6 @@ function SomeComponent() { ## 기여 -| | -| :---------------------------------------------------------------------------------------: | -| [이세민](https://github.com/semnil5202) | +| | | +| :---------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------: | +| [이세민](https://github.com/semnil5202) | [박영진](https://github.com/yogjin) | From 2b116dec5435bc20d83be662f433944861cbcce1 Mon Sep 17 00:00:00 2001 From: semnil5202 Date: Wed, 6 Mar 2024 00:09:01 +0900 Subject: [PATCH 3/3] =?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; `;