diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-10 19:12:43 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-10 19:12:43 +0800 |
commit | a1889e2a23f39c6029387708c0347e6a70fc97e9 (patch) | |
tree | e81a67c9414acb6e5aa7717ad1db361f1985faf7 /packages/website/ts/@next/components/button.tsx | |
parent | 37a1483359d17525db5f4446723c1d9e16385913 (diff) | |
download | dexon-sol-tools-a1889e2a23f39c6029387708c0347e6a70fc97e9.tar.gz dexon-sol-tools-a1889e2a23f39c6029387708c0347e6a70fc97e9.tar.zst dexon-sol-tools-a1889e2a23f39c6029387708c0347e6a70fc97e9.zip |
Replaces icons in landing, text styling
Diffstat (limited to 'packages/website/ts/@next/components/button.tsx')
-rw-r--r-- | packages/website/ts/@next/components/button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/button.tsx b/packages/website/ts/@next/components/button.tsx index c532b0720..5547a840f 100644 --- a/packages/website/ts/@next/components/button.tsx +++ b/packages/website/ts/@next/components/button.tsx @@ -27,7 +27,7 @@ export const Button = styled.button<ButtonInterface>` background-color: ${props => !props.isTransparent ? colors.brandLight : 'transparent'}; border-color: ${props => (props.isTransparent && !props.isNoBorder && !props.isWithArrow) && '#6a6a6a'}; color: ${props => props.color || props.theme.textColor}; - padding: ${props => !props.isNoPadding && '18px 30px'}; + padding: ${props => (!props.isNoPadding && !props.isWithArrow) && '18px 30px'}; text-align: center; font-size: ${props => props.isWithArrow ? '20px' : '18px'}; text-decoration: none; |