Skip to content

Commit

Permalink
Fix main section being compressed
Browse files Browse the repository at this point in the history
  • Loading branch information
synzen committed Jan 1, 2025
1 parent 5294a6d commit 62ea1d8
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ export const PageContentV2 = ({ children, invertBackground }: Props) => {
<chakra.header width="full">
<NewHeader invertBackground={invertBackground} />
</chakra.header>
<main>
<Flex width="100%" justifyContent="center" alignItems="flex-start" flex={1}>
{children}
</Flex>
</main>
<Flex as="main" width="100%" justifyContent="center" alignItems="flex-start" flex={1}>
{children}
</Flex>
</Flex>
);
};

0 comments on commit 62ea1d8

Please sign in to comment.