diff options
| author | Sriram Viswanathan <sriramv@thoughtworks.com> | 2017-04-05 15:14:21 -0300 | 
|---|---|---|
| committer | Sriram Viswanathan <sriramv@thoughtworks.com> | 2017-04-05 15:53:30 -0300 | 
| commit | 2f99b6fef90f5a395094c72b05cef1395ab83deb (patch) | |
| tree | 8f9f87a28a3e7989eb3c286616eb350ebfa5899d /web-ui | |
| parent | 1635fca0ddf659f43ce5185b144cad215117c0c9 (diff) | |
[#938] Fixes padding of text on the link button on backup-account step
with @anikarni
Diffstat (limited to 'web-ui')
| -rw-r--r-- | web-ui/src/common/link_button/link_button.js | 10 | 
1 files 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 }) => (  | 
