diff options
author | Fabio Berger <me@fabioberger.com> | 2018-02-09 08:27:47 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-02-09 08:27:47 +0800 |
commit | 4153d5784954ea7a507011a954334166f9d71a3b (patch) | |
tree | 987361686a4ab5b75c92045e829db574a32dce6a /packages/website | |
parent | 0652790703e9b4d8e96db26c34e389e5602eb410 (diff) | |
download | dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar.gz dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar.bz2 dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar.lz dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar.xz dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.tar.zst dexon-0x-contracts-4153d5784954ea7a507011a954334166f9d71a3b.zip |
Add title above "benefits" section
Diffstat (limited to 'packages/website')
-rw-r--r-- | packages/website/ts/pages/landing/landing.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packages/website/ts/pages/landing/landing.tsx b/packages/website/ts/pages/landing/landing.tsx index fc943dce8..a239bcf14 100644 --- a/packages/website/ts/pages/landing/landing.tsx +++ b/packages/website/ts/pages/landing/landing.tsx @@ -601,9 +601,19 @@ export class Landing extends React.Component<LandingProps, LandingState> { </div> ); }); + const titleStyle: React.CSSProperties = { + fontFamily: 'Roboto Mono', + color: colors.grey, + textTransform: 'uppercase', + fontWeight: 300, + letterSpacing: 3, + }; return ( <div className="clearfix" style={{ backgroundColor: colors.heroGrey }}> - <div className="mx-auto py4 sm-mt2 clearfix" style={{ maxWidth: '60em' }}> + <div className="h3 center pb3 pt4" style={titleStyle}> + Benefits of 0x + </div> + <div className="mx-auto pb4 sm-mt2 clearfix" style={{ maxWidth: '60em' }}> {boxes} </div> </div> |