From 2f99b6fef90f5a395094c72b05cef1395ab83deb Mon Sep 17 00:00:00 2001 From: Sriram Viswanathan Date: Wed, 5 Apr 2017 15:14:21 -0300 Subject: [#938] Fixes padding of text on the link button on backup-account step with @anikarni --- web-ui/src/common/link_button/link_button.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/web-ui/src/common/link_button/link_button.js b/web-ui/src/common/link_button/link_button.js index 05e86a9f..e7fd80b0 100644 --- a/web-ui/src/common/link_button/link_button.js +++ b/web-ui/src/common/link_button/link_button.js @@ -23,12 +23,18 @@ import './link_button.scss'; const labelStyle = { textTransform: 'none', color: 'inherit', - fontSize: 'inherit' + fontSize: 'inherit', + width: '100%', + padding: '0' }; const linkButtonStyle = { color: 'inherit', - borderRadius: '0' + borderRadius: '0', + minHeight: '36px', + height: 'auto', + lineHeight: '20px', + padding: '12px 0' }; const LinkButton = ({ buttonText, href }) => ( -- cgit v1.2.3