feat: More space for content on larger screens

This commit is contained in:
Tom Moor
2021-04-23 16:41:40 -07:00
parent c8055e40bb
commit f27072d06e
2 changed files with 5 additions and 1 deletions

View File

@@ -21,6 +21,10 @@ const Container = styled.div`
const Content = styled.div`
max-width: 46em;
margin: 0 auto;
${breakpoint("desktopLarge")`
max-width: 52em;
`};
`;
const CenteredContent = ({ children, ...rest }: Props) => {

View File

@@ -498,7 +498,7 @@ const MaxWidth = styled(Flex)`
`};
${breakpoint("desktopLarge")`
max-width: calc(48px + 46em);
max-width: calc(48px + 52em);
`};
`;