diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 47 |
1 files changed, 35 insertions, 12 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 7204fb098..7493a3a73 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -120,19 +120,42 @@ App.prototype.renderAppBar = function () { // metamask name h('h1', 'MetaMask'), - // hamburger - h(SandwichExpando, { - width: 16, - barHeight: 2, - padding: 0, - isOpen: props.menuOpen, - color: 'rgb(247,146,30)', - onClick: (event) => { - event.preventDefault() - event.stopPropagation() - this.props.dispatch(actions.toggleMenu()) + + h('div', { + style: { + display: 'flex', + flexDirection: 'row', + alignItems: 'center', }, - }), + }, [ + + // small accounts nav + h('img.cursor-pointer.color-orange', { + src: 'images/switch_acc.svg', + style: { + width: '23.5px', + marginRight: '8px', + }, + onClick: (event) => { + event.stopPropagation() + this.props.dispatch(actions.showAccountsPage()) + }, + }), + + // hamburger + h(SandwichExpando, { + width: 16, + barHeight: 2, + padding: 0, + isOpen: props.menuOpen, + color: 'rgb(247,146,30)', + onClick: (event) => { + event.preventDefault() + event.stopPropagation() + this.props.dispatch(actions.toggleMenu()) + }, + }), + ]), ]), ]) ) |