diff options
author | Fabio Berger <me@fabioberger.com> | 2018-10-11 04:31:18 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-10-11 04:31:18 +0800 |
commit | 7418932432de53300ba276da1ca9a33fb2f1d8b1 (patch) | |
tree | 2bc7c5d8f1ba1da1e4f455cbe4bcb2ae76083063 /packages/dev-tools-pages/ts/pages | |
parent | fb882b0c7710151af7024c510d853f828a54f43a (diff) | |
download | dexon-0x-contracts-7418932432de53300ba276da1ca9a33fb2f1d8b1.tar.gz dexon-0x-contracts-7418932432de53300ba276da1ca9a33fb2f1d8b1.tar.zst dexon-0x-contracts-7418932432de53300ba276da1ca9a33fb2f1d8b1.zip |
Fix button and center
Diffstat (limited to 'packages/dev-tools-pages/ts/pages')
-rw-r--r-- | packages/dev-tools-pages/ts/pages/landing.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/ts/pages/landing.tsx b/packages/dev-tools-pages/ts/pages/landing.tsx index e89cfa665..a70a9de46 100644 --- a/packages/dev-tools-pages/ts/pages/landing.tsx +++ b/packages/dev-tools-pages/ts/pages/landing.tsx @@ -3,6 +3,7 @@ import * as React from 'react'; import { Button } from '../components/ui/button'; import { Container } from '../components/ui/container'; +import { Text } from '../components/ui/text'; interface LandingProps {} @@ -15,7 +16,11 @@ export class Landing extends React.Component<LandingProps, LandingState> { public render(): React.ReactNode { return ( <Container id="landing" className="clearfix"> - <Button>Click me!</Button> + <Container className="mx-auto p4" width="200px"> + <Button> + <Text fontColor="white">Click me!</Text> + </Button> + </Container> </Container> ); } |