diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 07:27:04 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-05 07:27:04 +0800 |
commit | 0cfe5637c048091c9502d49c8526e17cefb1a525 (patch) | |
tree | b6bfde2c8eed26fc93dde160fe64f7fad0af2fdf /packages/instant/src/components/ui/text.tsx | |
parent | e2220a939f75087bf5f7fd1dbb02ed5ae4ec64e4 (diff) | |
download | dexon-0x-contracts-0cfe5637c048091c9502d49c8526e17cefb1a525.tar.gz dexon-0x-contracts-0cfe5637c048091c9502d49c8526e17cefb1a525.tar.zst dexon-0x-contracts-0cfe5637c048091c9502d49c8526e17cefb1a525.zip |
Create zrx instant container heading
Diffstat (limited to 'packages/instant/src/components/ui/text.tsx')
-rw-r--r-- | packages/instant/src/components/ui/text.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/instant/src/components/ui/text.tsx b/packages/instant/src/components/ui/text.tsx index 0bc387644..9fb8ea26f 100644 --- a/packages/instant/src/components/ui/text.tsx +++ b/packages/instant/src/components/ui/text.tsx @@ -24,9 +24,9 @@ export interface TextProps { } const PlainText: React.StatelessComponent<TextProps> = ({ children, className, onClick }) => ( - <p className={className} onClick={onClick}> + <div className={className} onClick={onClick}> {children} - </p> + </div> ); const darkenOnHoverAmount = 0.3; @@ -61,9 +61,9 @@ Text.defaultProps = { fontWeight: 400, fontColor: ColorOption.black, fontSize: '15px', - lineHeight: '1.5em', textDecorationLine: 'none', noWrap: false, + display: 'inline-block', }; Text.displayName = 'Text'; |