aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/aboutPageLayout.tsx
diff options
context:
space:
mode:
authorEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-12-12 22:00:03 +0800
committerEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-12-12 22:00:03 +0800
commitf06c17cccca46298a4b2780c1963165c5020c878 (patch)
treef74d567b342e2b600c7f3f850fb7bb9ade496bf8 /packages/website/ts/@next/components/aboutPageLayout.tsx
parentffff1d5fff898af8796e02892b562d308aed33d0 (diff)
downloaddexon-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/aboutPageLayout.tsx')
-rw-r--r--packages/website/ts/@next/components/aboutPageLayout.tsx12
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;
- }
-`;