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/aboutPageLayout.tsx | |
parent | ffff1d5fff898af8796e02892b562d308aed33d0 (diff) | |
download | dexon-0x-contracts-f06c17cccca46298a4b2780c1963165c5020c878.tar.gz dexon-0x-contracts-f06c17cccca46298a4b2780c1963165c5020c878.tar.zst dexon-0x-contracts-f06c17cccca46298a4b2780c1963165c5020c878.zip |
Edits team page
Diffstat (limited to 'packages/website/ts/@next/components/aboutPageLayout.tsx')
-rw-r--r-- | packages/website/ts/@next/components/aboutPageLayout.tsx | 12 |
1 files changed, 3 insertions, 9 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; - } -`; |