diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-04 23:30:12 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-04 23:30:12 +0800 |
commit | 3c7dca37f5f596aa47978e3a706db7a181747d01 (patch) | |
tree | 9348f1af91f10a3905b03ed5d781cec88817e736 /packages/website/ts/@next/pages | |
parent | 8acb25f577feaea910ef0c1121aaba2ea177e718 (diff) | |
download | dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar.gz dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar.bz2 dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar.lz dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar.xz dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.tar.zst dexon-0x-contracts-3c7dca37f5f596aa47978e3a706db7a181747d01.zip |
Adds padding prop to text elements
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/landing.tsx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx index b39ee409d..2feb4a302 100644 --- a/packages/website/ts/@next/pages/landing.tsx +++ b/packages/website/ts/@next/pages/landing.tsx @@ -67,8 +67,9 @@ export const NextLanding: React.StatelessComponent<{}> = () => ( Powering Decentralized Exchange </Heading> - <Paragraph size="medium"> - 0x is the best solution for adding exchange functionality to your business. + <Paragraph size="medium" isMuted={true}> + 0x is the best solution for adding<br /> + exchange functionality to your business. </Paragraph> <ButtonWrap> @@ -83,7 +84,9 @@ export const NextLanding: React.StatelessComponent<{}> = () => ( </Column> <Column colWidth="1/2"> - <LogoOutlined/> + <WrapCentered> + <LogoOutlined/> + </WrapCentered> </Column> </Wrap> </Section> @@ -92,7 +95,11 @@ export const NextLanding: React.StatelessComponent<{}> = () => ( <WrapCentered width="narrow"> <ProtocolIcon/> - <Paragraph size="large" isCentered={true}> + <Paragraph + size="large" + isCentered={true} + padding={['large', 0, 'default', 0]} + > 0x is an open protocol that enables the peer-to-peer exchange of Ethereum-based tokens. Anyone in the world can use 0x to service a wide variety of markets ranging from gaming items to financial instruments to assets that could have |