max width to the entire page layout
This commit is contained in:
parent
b086a4a8d7
commit
c9ef20edf7
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ function ItemsPage() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box maxWidth="800px" margin="0 auto">
|
<Box>
|
||||||
<Heading1 marginBottom="8">
|
<Heading1 marginBottom="8">
|
||||||
{isCurrentUser ? "Items you own" : `Items ${data.user.username} owns`}
|
{isCurrentUser ? "Items you own" : `Items ${data.user.username} owns`}
|
||||||
</Heading1>
|
</Heading1>
|
||||||
|
|
|
@ -11,7 +11,7 @@ import HomepageSplashImg from "../images/homepage-splash.png";
|
||||||
|
|
||||||
function PageLayout({ children, hideHomeLink }) {
|
function PageLayout({ children, hideHomeLink }) {
|
||||||
return (
|
return (
|
||||||
<Box padding="6" paddingTop="3">
|
<Box padding="6" paddingTop="3" maxWidth="800px" margin="0 auto">
|
||||||
<Box
|
<Box
|
||||||
width="100%"
|
width="100%"
|
||||||
display="flex"
|
display="flex"
|
||||||
|
|
Loading…
Reference in a new issue