aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components')
-rw-r--r--packages/website/ts/@next/components/aboutPageLayout.tsx12
-rw-r--r--packages/website/ts/@next/components/newLayout.tsx1
-rw-r--r--packages/website/ts/@next/components/sections/landing/clients.tsx2
3 files changed, 5 insertions, 10 deletions
diff --git a/packages/website/ts/@next/components/aboutPageLayout.tsx b/packages/website/ts/@next/components/aboutPageLayout.tsx
index 54e4c34f4..9f55c2e81 100644
--- a/packages/website/ts/@next/components/aboutPageLayout.tsx
+++ b/packages/website/ts/@next/components/aboutPageLayout.tsx
@@ -17,14 +17,14 @@ interface Props {
export const AboutPageLayout = (props: Props) => (
<SiteWrap theme="light">
<Section isFlex={true} maxWidth="1170px">
- <Nav colWidth="1/3">
+ <Column>
<ChapterLink to="/next/about/mission">Our Mission</ChapterLink>
<ChapterLink to="/next/about/team">Team</ChapterLink>
<ChapterLink to="/next/about/press">Press</ChapterLink>
<ChapterLink to="/next/about/jobs">Jobs</ChapterLink>
- </Nav>
+ </Column>
- <Column width="70%" maxWidth="826px">
+ <Column width="70%" maxWidth="800px">
<Column width="100%" maxWidth="680px">
<Heading size="medium">
{props.title}
@@ -46,9 +46,3 @@ export const AboutPageLayout = (props: Props) => (
{props.children}
</SiteWrap>
);
-
-const Nav = styled(Column)`
- @media (max-width: 768px) {
- // display: none;
- }
-`;
diff --git a/packages/website/ts/@next/components/newLayout.tsx b/packages/website/ts/@next/components/newLayout.tsx
index 5c5f3d0d4..21f4271bd 100644
--- a/packages/website/ts/@next/components/newLayout.tsx
+++ b/packages/website/ts/@next/components/newLayout.tsx
@@ -110,6 +110,7 @@ FlexWrap.defaultProps = {
WrapGrid.defaultProps = {
isCentered: true,
+ isFullWidth: true,
};
Wrap.defaultProps = {
diff --git a/packages/website/ts/@next/components/sections/landing/clients.tsx b/packages/website/ts/@next/components/sections/landing/clients.tsx
index 8f6429328..6a1d96285 100644
--- a/packages/website/ts/@next/components/sections/landing/clients.tsx
+++ b/packages/website/ts/@next/components/sections/landing/clients.tsx
@@ -65,7 +65,7 @@ export const SectionLandingClients = () => (
Join the growing number of projects developing on 0x
</Heading>
- <WrapGrid width="narrow" isWrapped={true}>
+ <WrapGrid isWrapped={true}>
{_.map(projects, (item: ProjectLogo, index) => (
<StyledProject
key={`client-${index}`}