diff options
author | Alexander Tseung <alextsg@users.noreply.github.com> | 2018-02-08 10:46:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-08 10:46:27 +0800 |
commit | e9c2c0eec19514468fd53087f974709d5df9c35b (patch) | |
tree | 2dae3267b4d83c066ea7744597cf04f3a0966afa /ui/app/components | |
parent | 7f151b861cc3a565d3feefc50b3be25ab4490ac8 (diff) | |
download | tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar.gz tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar.bz2 tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar.lz tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar.xz tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.tar.zst tangerine-wallet-browser-e9c2c0eec19514468fd53087f974709d5df9c35b.zip |
Make blockies icon round to match identicons (#3205)
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/account-menu/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/account-menu/index.js b/ui/app/components/account-menu/index.js index aeb8a0b38..1a0103d4f 100644 --- a/ui/app/components/account-menu/index.js +++ b/ui/app/components/account-menu/index.js @@ -80,23 +80,23 @@ AccountMenu.prototype.render = function () { h(Divider), h(Item, { onClick: () => showNewAccountPage('CREATE'), - icon: h('img', { src: 'images/plus-btn-white.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/plus-btn-white.svg' }), text: 'Create Account', }), h(Item, { onClick: () => showNewAccountPage('IMPORT'), - icon: h('img', { src: 'images/import-account.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/import-account.svg' }), text: 'Import Account', }), h(Divider), h(Item, { onClick: showInfoPage, - icon: h('img', { src: 'images/mm-info-icon.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/mm-info-icon.svg' }), text: 'Info & Help', }), h(Item, { onClick: showConfigPage, - icon: h('img', { src: 'images/settings.svg' }), + icon: h('img.account-menu__item-icon', { src: 'images/settings.svg' }), text: 'Settings', }), ]) |