diff options
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 9538a6b93..7da03cdd1 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -114,7 +114,6 @@ App.prototype.renderAppBar = function () { alignItems: 'center', visibility: props.isUnlocked ? 'visible' : 'none', background: props.isUnlocked ? 'white' : 'none', - height: '36px', position: 'relative', zIndex: 2, }, @@ -127,14 +126,6 @@ App.prototype.renderAppBar = function () { alignItems: 'center', }, }, [ - - // mini logo - h('img', { - height: 24, - width: 24, - src: '/images/icon-128.png', - }), - h(NetworkIndicator, { network: this.props.network, provider: this.props.provider, @@ -149,8 +140,9 @@ App.prototype.renderAppBar = function () { // metamask name h('h1', { style: { - position: 'relative', - left: '9px', + position: 'absolute', + left: '50%', + transform: 'translateX(-50%)', }, }, 'MetaMask'), |