summaryrefslogtreecommitdiff
path: root/web-ui/src/common/link_button/link_button.js
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-04-05 12:08:00 -0300
committerSriram Viswanathan <sriramv@thoughtworks.com>2017-04-05 12:08:00 -0300
commit161af0e198d98fa4855c8846924e37ae756923d0 (patch)
treec067b92311fd46edde67ede86fd966bed554d98c /web-ui/src/common/link_button/link_button.js
parent8198fa48d2e42d89457940590ec4b308ee541090 (diff)
[#938] Fixes styling of title & button on backup-account step
Diffstat (limited to 'web-ui/src/common/link_button/link_button.js')
-rw-r--r--web-ui/src/common/link_button/link_button.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/web-ui/src/common/link_button/link_button.js b/web-ui/src/common/link_button/link_button.js
index e18903f2..17391ce6 100644
--- a/web-ui/src/common/link_button/link_button.js
+++ b/web-ui/src/common/link_button/link_button.js
@@ -33,6 +33,14 @@ const buttonStyle = {
backgroundColor: '#fff'
};
+const overlayStyle = {
+ height: '48px'
+};
+
+const style = {
+ boxShadow: 'none'
+};
+
const LinkButton = ({ buttonText, href }) => (
<div className='submit-button link-button'>
<RaisedButton
@@ -41,7 +49,8 @@ const LinkButton = ({ buttonText, href }) => (
label={buttonText}
labelStyle={labelStyle}
buttonStyle={buttonStyle}
- overlayStyle={buttonStyle}
+ overlayStyle={overlayStyle}
+ style={style}
fullWidth
/>
</div>