patch responsive width [Fixes #53] (#104)

This commit is contained in:
Paul Wackerow 2022-12-02 19:07:58 +01:00 committed by GitHub
parent 41069b3d10
commit 3a2a4b1cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,7 +12,7 @@ interface Props {
export const Layout: FC<Props> = ({ children }) => {
return (
<Container maxW={{ base: 'container.sm', md: 'container.2xl' }} my={{ base: 4, md: 7 }}>
<Container maxW={{ base: 'full', md: 'container.2xl' }} my={{ base: 4, md: 7 }}>
<Header />
{children}