diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 00:39:31 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-13 00:39:45 +0800 |
commit | 98325e1cfb4f6c732728fe2943895fad2cb03be5 (patch) | |
tree | 30f0c731521d7426523141e4f09ed0b20f3cb367 /packages/website/ts/@next/pages | |
parent | 356b7df534054c0e1fbe5899b953dea6c99d2081 (diff) | |
download | dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar.gz dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar.bz2 dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar.lz dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar.xz dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.tar.zst dexon-0x-contracts-98325e1cfb4f6c732728fe2943895fad2cb03be5.zip |
Tests animations on about page headers
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/why.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/website/ts/@next/pages/why.tsx b/packages/website/ts/@next/pages/why.tsx index 7b30cd25a..18c4dc092 100644 --- a/packages/website/ts/@next/pages/why.tsx +++ b/packages/website/ts/@next/pages/why.tsx @@ -137,7 +137,7 @@ export class NextWhy extends React.PureComponent { <Column width="55%" maxWidth="826px"> <Column width="100%" maxWidth="560px" padding="0 30px 0 0"> <SectionWrap id="benefits"> - <Heading size="medium">What 0x offers</Heading> + <Heading size="medium" marginBottom="60px">What 0x offers</Heading> {_.map(offersData, (item, index) => ( <Definition @@ -151,7 +151,7 @@ export class NextWhy extends React.PureComponent { </SectionWrap> <SectionWrap id="cases" isNotRelative={true}> - <Heading size="medium">Use Cases</Heading> + <Heading size="medium" marginBottom="60px">Use Cases</Heading> <Slider> {_.map(useCaseSlides, (item, index) => ( <Slide @@ -165,7 +165,7 @@ export class NextWhy extends React.PureComponent { </SectionWrap> <SectionWrap id="functionality"> - <Heading size="medium">Exchange Functionality</Heading> + <Heading size="medium" marginBottom="60px">Exchange Functionality</Heading> {_.map(functionalityData, (item, index) => ( <Definition |