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

pull/26459/head^2
Paul Wackerow 2 years ago committed by GitHub
parent 41069b3d10
commit 3a2a4b1cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/layouts/Layout.tsx

@ -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}

Loading…
Cancel
Save