Tweaks page styles (#1087)

This commit is contained in:
Michael Novotny 2023-07-17 18:38:47 -05:00 committed by GitHub
parent 73c6d455fe
commit b6d8eed77f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import { Suspense } from 'react';
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<Suspense>
<div className="w-full bg-white dark:bg-black">
<div className="w-full">
<div className="mx-8 max-w-2xl py-20 sm:mx-auto">
<Suspense>{children}</Suspense>
</div>