diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-04 11:02:49 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-04 11:03:48 +0800 |
commit | 777eb865df2d8dae15eb34589bdd47817aab8486 (patch) | |
tree | 96d3780190efbda2a29e83bb7498a7b48c455568 /ui | |
parent | 5ddb40f60cfd300f97aba82158fa239d1c80f9bc (diff) | |
download | tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar.gz tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar.bz2 tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar.lz tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar.xz tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.tar.zst tangerine-wallet-browser-777eb865df2d8dae15eb34589bdd47817aab8486.zip |
Adjust padding of accountSwitcher dropdown
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/account-dropdowns.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ui/app/components/account-dropdowns.js b/ui/app/components/account-dropdowns.js index b61a4996a..da92619e1 100644 --- a/ui/app/components/account-dropdowns.js +++ b/ui/app/components/account-dropdowns.js @@ -36,7 +36,7 @@ class AccountDropdowns extends Component { this.props.actions.showAccountDetail(identity.address) }, style: { - marginTop: index === 0 ? '10px' : '', + marginTop: index === 0 ? '5px' : '', fontSize: '24px', }, }, @@ -66,12 +66,15 @@ class AccountDropdowns extends Component { Dropdown, { style: { - marginLeft: '-220px', + marginLeft: '-238px', marginTop: '38px', minWidth: '180px', overflowY: 'auto', maxHeight: '300px', - width: '285px', + width: '300px', + }, + innerStyle: { + padding: '8px 25px', }, isOpen: accountSelectorActive, onClickOutside: (event) => { @@ -123,7 +126,7 @@ class AccountDropdowns extends Component { style: { marginLeft: '20px', fontSize: '24px', - marginButtom: '20px', + marginBottom: '5px', }, }, 'Import Account'), ] |