Skip to content

Commit

Permalink
design: Dropdown 가로 스크롤 제거 및 빈 상태에서 기본 크기 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Mar 5, 2024
1 parent 86c803d commit 2b116de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
`;

0 comments on commit 2b116de

Please sign in to comment.