Skip to content

Commit

Permalink
fix(web/menu): fix vertical icon alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Oct 29, 2022
1 parent 5b80631 commit 6b8cfa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/features/menu/list/ListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ListItem = forwardRef<Array<HTMLDivElement | null>, Props>(({ item, index,
>
<Flex alignItems="center" height="100%" gap="20px">
{item.icon && (
<Box>
<Box display="flex" alignItems="center">
<FontAwesomeIcon icon={item.icon} fontSize={24} color="#909296" fixedWidth />
</Box>
)}
Expand Down

0 comments on commit 6b8cfa9

Please sign in to comment.