Skip to content

Commit

Permalink
fix(app): fix the arrow icon size in dropdown menu
Browse files Browse the repository at this point in the history
fix the arrow icon size in dropdown
  • Loading branch information
koji committed Apr 29, 2024
1 parent 0eb749f commit e0298d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/atoms/MenuList/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ export function DropdownMenu(props: DropdownMenuProps): JSX.Element {
{currentOption.name}
</StyledText>
{showDropdownMenu ? (
<Icon size="1.2rem" name="menu-down" transform="rotate(180deg)" />
<Icon size="0.75rem" name="menu-down" transform="rotate(180deg)" />
) : (
<Icon size="1.2rem" name="menu-down" />
<Icon size="0.75rem" name="menu-down" />
)}
</Flex>
{showDropdownMenu && (
Expand Down

0 comments on commit e0298d4

Please sign in to comment.