Decrease wide page width from 7xl to 6xl
This commit is contained in:
parent
a04c978408
commit
d47e2f5d93
|
@ -26,7 +26,7 @@ export function NavBar(props: {
|
||||||
<Row
|
<Row
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'justify-between items-center mx-auto sm:px-4',
|
'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} />
|
<ManticLogo darkBackground={darkBackground} />
|
||||||
|
|
|
@ -11,7 +11,7 @@ export function Page(props: { wide?: boolean; children?: any }) {
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'w-full px-4 pb-8 mx-auto',
|
'w-full px-4 pb-8 mx-auto',
|
||||||
wide ? 'max-w-7xl' : 'max-w-4xl'
|
wide ? 'max-w-6xl' : 'max-w-4xl'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user