Skip to content

Commit

Permalink
fix(Header): Fix display in center section of Header
Browse files Browse the repository at this point in the history
  • Loading branch information
lialila committed Apr 19, 2024
1 parent a17fff5 commit 58dd003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Header: React.FC<HeaderProps> = ({ left, center, right }: HeaderPro
{left}
</Flex>

<Flex display={['none', null, null, 'unset']} width="50%" flexDir="row" justifyContent="center">
<Flex display={['none', null, null, 'flex']} width="50%" flexDir="row" justifyContent="center">
{center}
</Flex>

Expand Down

0 comments on commit 58dd003

Please sign in to comment.