Skip to content

Commit

Permalink
design :: sidebar arrow 방향 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Apr 16, 2024
1 parent c880507 commit 667e608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const BottomMenu = styled.div<{ isOpen: boolean }>`
height: 40px;
flex: none;
transition: 0.4s ease-in-out;
${({ isOpen }) => isOpen && `transform: rotate(-180deg)`};
${({ isOpen }) => (isOpen ? `transform: rotate(0deg)` : `transform: rotate(180deg)`)};
}
> span {
font-size: 18px;
Expand Down

0 comments on commit 667e608

Please sign in to comment.