diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-04 08:49:23 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-04 08:49:23 +0800 |
commit | aff213e845dcea49946f9a26d4b44a35082cd5f3 (patch) | |
tree | 93716c1c46882628c21e989765e1f7e671a91370 /ui/app/components | |
parent | 850e9b63d297c9da2403bb3796445df3cd500600 (diff) | |
download | tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar.gz tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar.bz2 tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar.lz tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar.xz tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.tar.zst tangerine-wallet-browser-aff213e845dcea49946f9a26d4b44a35082cd5f3.zip |
Position account switcher icon back in app header
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/account-dropdowns.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/app/components/account-dropdowns.js b/ui/app/components/account-dropdowns.js index 8d8cb211e..906b3315b 100644 --- a/ui/app/components/account-dropdowns.js +++ b/ui/app/components/account-dropdowns.js @@ -193,10 +193,14 @@ class AccountDropdowns extends Component { }, [ enableAccountsSelector && h( - 'i.fa.fa-angle-down', + 'div.cursor-pointer.color-orange', { style: { - fontSize: '1.8em', + background: 'url(images/switch_acc.svg) white center center no-repeat', + height: '25px', + width: '25px', + transform: 'scale(0.75)', + marginRight: '3px', }, onClick: (event) => { event.stopPropagation() |