aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/portal
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-06-20 07:25:43 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-06-20 07:25:43 +0800
commit5817a30031b3cfac5c17dcc8e11d901e8d6ded45 (patch)
tree431be646ff99ef33d4c0bdc4a8fccd60a2b1c7c3 /packages/website/ts/components/portal
parente216eb1e7b49f1ad4bc2c8a07007b4ef94373c5d (diff)
downloaddexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar.gz
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar.bz2
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar.lz
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar.xz
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.tar.zst
dexon-sol-tools-5817a30031b3cfac5c17dcc8e11d901e8d6ded45.zip
Update Island shadow styling and use Island in more places
Diffstat (limited to 'packages/website/ts/components/portal')
-rw-r--r--packages/website/ts/components/portal/back_button.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/website/ts/components/portal/back_button.tsx b/packages/website/ts/components/portal/back_button.tsx
index 2d0bbefc3..ca35abc2b 100644
--- a/packages/website/ts/components/portal/back_button.tsx
+++ b/packages/website/ts/components/portal/back_button.tsx
@@ -2,6 +2,7 @@ import { Styles } from '@0xproject/react-shared';
import * as React from 'react';
import { Link } from 'react-router-dom';
+import { Island } from 'ts/components/ui/island';
import { colors } from 'ts/style/colors';
export interface BackButtonProps {
@@ -15,9 +16,7 @@ const styles: Styles = {
backButton: {
height: BACK_BUTTON_HEIGHT,
paddingTop: 10,
- backgroundColor: colors.white,
borderRadius: BACK_BUTTON_HEIGHT,
- boxShadow: `0px 4px 6px ${colors.walletBoxShadow}`,
},
backButtonIcon: {
color: colors.mediumBlue,
@@ -29,14 +28,14 @@ export const BackButton = (props: BackButtonProps) => {
return (
<div style={{ height: 65, paddingTop: 25 }}>
<Link to={props.to} style={{ textDecoration: 'none' }}>
- <div className="flex right" style={styles.backButton}>
+ <Island className="flex right" style={styles.backButton}>
<div style={{ marginLeft: 12 }}>
<i style={styles.backButtonIcon} className={`zmdi zmdi-arrow-left`} />
</div>
<div style={{ marginLeft: 12, marginRight: 12 }}>
<div style={{ fontSize: 16, color: colors.lightGrey }}>{props.labelText}</div>
</div>
- </div>
+ </Island>
</Link>
</div>
);