Skip to content

Commit

Permalink
아코디언 화살표 각도 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dongoc committed Aug 2, 2024
1 parent 90b8181 commit 0d48bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/public-header/src/side-menu/menu-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ const AccordionMenuItemBase = styled(Container)<{ open: boolean }>`
& > img {
width: 8px;
height: 16px;
transform: rotate(270deg);
transform: rotate(90deg);
${({ open }) =>
open &&
css`
transform: rotate(90deg);
transform: rotate(270deg);
`};
}
`
Expand Down

0 comments on commit 0d48bca

Please sign in to comment.