diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-17 19:04:35 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-17 19:05:05 +0800 |
commit | 6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a (patch) | |
tree | 05d795d020239de315669aefcde505401386bfda /packages/website/ts | |
parent | 4611c65aa39b0a76298a611d4f8e1edddaced20d (diff) | |
download | dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar.gz dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar.bz2 dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar.lz dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar.xz dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.tar.zst dexon-sol-tools-6fc80cd7764bec67b68d4a1ecf5d297fb7040e5a.zip |
Fixes scrollable anchors in why page
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/@next/pages/why.tsx | 99 |
1 files changed, 54 insertions, 45 deletions
diff --git a/packages/website/ts/@next/pages/why.tsx b/packages/website/ts/@next/pages/why.tsx index a267bd09e..9c3c4d0a2 100644 --- a/packages/website/ts/@next/pages/why.tsx +++ b/packages/website/ts/@next/pages/why.tsx @@ -1,6 +1,7 @@ import * as _ from 'lodash'; import * as React from 'react'; -import AnchorLink from 'react-anchor-link-smooth-scroll'; +import ScrollableAnchor, { configureAnchors } from 'react-scrollable-anchor'; + import styled from 'styled-components'; import {Hero} from 'ts/@next/components/hero'; @@ -79,6 +80,8 @@ const useCaseSlides = [ }, ]; +configureAnchors({ offset: -60 }); + export class NextWhy extends React.Component { public state = { isContactModalOpen: false, @@ -136,57 +139,63 @@ export class NextWhy extends React.Component { <Section maxWidth="1170px" isFlex={true} isFullWidth={true}> <Column> <NavStickyWrap offsetTop="130px"> - <ChapterLink offset="60" href="#benefits">Benefits</ChapterLink> - <ChapterLink offset="60" href="#cases">Use Cases</ChapterLink> - <ChapterLink offset="60" href="#functionality">Features</ChapterLink> + <ChapterLink href="#benefits">Benefits</ChapterLink> + <ChapterLink href="#cases">Use Cases</ChapterLink> + <ChapterLink href="#functionality">Features</ChapterLink> </NavStickyWrap> </Column> <Column width="55%" maxWidth="826px"> <Column width="100%" maxWidth="560px" padding="0 30px 0 0"> - <SectionWrap id="benefits"> - <SectionTitle size="medium" marginBottom="60px" isNoBorder={true}>What 0x offers</SectionTitle> - - {_.map(offersData, (item, index) => ( - <Definition - key={`offers-${index}`} - icon={item.icon} - title={item.title} - titleSize="small" - description={item.description} - isWithMargin={true} - /> - ))} - </SectionWrap> - - <SectionWrap id="cases" isNotRelative={true}> - <SectionTitle size="medium" marginBottom="60px">Use Cases</SectionTitle> - <Slider> - {_.map(useCaseSlides, (item, index) => ( - <Slide - key={`useCaseSlide-${index}`} - heading={item.title} - text={item.description} + <ScrollableAnchor id="benefits"> + <SectionWrap> + <SectionTitle size="medium" marginBottom="60px" isNoBorder={true}>What 0x offers</SectionTitle> + + {_.map(offersData, (item, index) => ( + <Definition + key={`offers-${index}`} + icon={item.icon} + title={item.title} + titleSize="small" + description={item.description} + isWithMargin={true} + /> + ))} + </SectionWrap> + </ScrollableAnchor> + + <ScrollableAnchor id="cases"> + <SectionWrap isNotRelative={true}> + <SectionTitle size="medium" marginBottom="60px">Use Cases</SectionTitle> + <Slider> + {_.map(useCaseSlides, (item, index) => ( + <Slide + key={`useCaseSlide-${index}`} + heading={item.title} + text={item.description} + icon={item.icon} + /> + ))} + </Slider> + </SectionWrap> + </ScrollableAnchor> + + <ScrollableAnchor id="functionality"> + <SectionWrap> + <SectionTitle size="medium" marginBottom="60px">Exchange Functionality</SectionTitle> + + {_.map(functionalityData, (item, index) => ( + <Definition + key={`functionality-${index}`} icon={item.icon} + title={item.title} + titleSize="small" + description={item.description} + isWithMargin={true} /> ))} - </Slider> - </SectionWrap> - - <SectionWrap id="functionality"> - <SectionTitle size="medium" marginBottom="60px">Exchange Functionality</SectionTitle> - - {_.map(functionalityData, (item, index) => ( - <Definition - key={`functionality-${index}`} - icon={item.icon} - title={item.title} - titleSize="small" - description={item.description} - isWithMargin={true} - /> - ))} - </SectionWrap> + </SectionWrap> + </ScrollableAnchor> </Column> </Column> </Section> @@ -270,7 +279,7 @@ const NavStickyWrap = styled(WrapSticky)` } `; -const ChapterLink = styled(AnchorLink)` +const ChapterLink = styled.a` color: ${props => props.theme.textColor}; font-size: 22px; margin-bottom: 25px; |