diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-07-06 13:03:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-06 13:03:13 +0800 |
commit | d975c0cef34d126ce30202610671a6f8dca6b6c0 (patch) | |
tree | 3c4ad472a6dc52b19eedd32ca06eddcb2464c883 /packages/website/ts/components/ui/button.tsx | |
parent | 51b86742d10a9e73fd017a0d052e0e423685eb69 (diff) | |
parent | 9f870b3d4ee1ce1ca4ddbac1efeabcb39cceebe8 (diff) | |
download | dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar.gz dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar.bz2 dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar.lz dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar.xz dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.tar.zst dexon-0x-contracts-d975c0cef34d126ce30202610671a6f8dca6b6c0.zip |
Merge pull request #827 from 0xProject/feature/website/landing-page-cta
Landing page CTA for portal
Diffstat (limited to 'packages/website/ts/components/ui/button.tsx')
-rw-r--r-- | packages/website/ts/components/ui/button.tsx | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/packages/website/ts/components/ui/button.tsx b/packages/website/ts/components/ui/button.tsx index 1489a74a6..2952c8859 100644 --- a/packages/website/ts/components/ui/button.tsx +++ b/packages/website/ts/components/ui/button.tsx @@ -11,6 +11,7 @@ export interface ButtonProps { backgroundColor?: string; borderColor?: string; width?: string; + padding?: string; type?: string; isDisabled?: boolean; onClick?: (event: React.MouseEvent<HTMLElement>) => void; @@ -27,9 +28,8 @@ export const Button = styled(PlainButton)` font-size: ${props => props.fontSize}; color: ${props => props.fontColor}; transition: background-color, opacity 0.5s ease; - padding: 0.8em 2.2em; + padding: ${props => props.padding}; border-radius: 6px; - box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); font-weight: 500; outline: none; font-family: ${props => props.fontFamily}; @@ -44,7 +44,6 @@ export const Button = styled(PlainButton)` } &:disabled { opacity: 0.5; - box-shadow: none; } &:focus { background-color: ${props => saturate(0.2, props.backgroundColor)}; @@ -57,6 +56,7 @@ Button.defaultProps = { width: 'auto', fontFamily: 'Roboto', isDisabled: false, + padding: '0.8em 2.2em', }; Button.displayName = 'Button'; @@ -67,20 +67,26 @@ export interface CallToActionProps { type?: CallToActionType; fontSize?: string; width?: string; + padding?: string; } -export const CallToAction: React.StatelessComponent<CallToActionProps> = ({ children, type, fontSize, width }) => { +export const CallToAction: React.StatelessComponent<CallToActionProps> = ({ + children, + type, + fontSize, + padding, + width, +}) => { const isLight = type === 'light'; - const backgroundColor = isLight ? colors.white : colors.heroGrey; + const backgroundColor = isLight ? colors.white : colors.mediumBlue; const fontColor = isLight ? colors.heroGrey : colors.white; - const borderColor = isLight ? undefined : colors.white; return ( <Button fontSize={fontSize} + padding={padding} backgroundColor={backgroundColor} fontColor={fontColor} width={width} - borderColor={borderColor} > {children} </Button> @@ -89,4 +95,5 @@ export const CallToAction: React.StatelessComponent<CallToActionProps> = ({ chil CallToAction.defaultProps = { type: 'dark', + fontSize: '14px', }; |