diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-12 22:00:03 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-12 22:00:03 +0800 |
commit | f06c17cccca46298a4b2780c1963165c5020c878 (patch) | |
tree | f74d567b342e2b600c7f3f850fb7bb9ade496bf8 /packages/website/ts/@next/components | |
parent | ffff1d5fff898af8796e02892b562d308aed33d0 (diff) | |
download | dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar.gz dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar.bz2 dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar.lz dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar.xz dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.tar.zst dexon-sol-tools-f06c17cccca46298a4b2780c1963165c5020c878.zip |
Edits team page
Diffstat (limited to 'packages/website/ts/@next/components')
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}`} |