Decrease wide page width from 7xl to 6xl

This commit is contained in:
jahooma 2022-01-10 10:48:13 -06:00
parent a04c978408
commit d47e2f5d93
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export function NavBar(props: {
<Row
className={clsx(
'justify-between items-center mx-auto sm:px-4',
wide ? 'max-w-7xl' : 'max-w-4xl'
wide ? 'max-w-6xl' : 'max-w-4xl'
)}
>
<ManticLogo darkBackground={darkBackground} />

View File

@ -11,7 +11,7 @@ export function Page(props: { wide?: boolean; children?: any }) {
<div
className={clsx(
'w-full px-4 pb-8 mx-auto',
wide ? 'max-w-7xl' : 'max-w-4xl'
wide ? 'max-w-6xl' : 'max-w-4xl'
)}
>
{children}