diff options
author | Dan Finlay <somniac@me.com> | 2016-12-17 02:04:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-17 02:04:57 +0800 |
commit | 6d13ef691f4162caad6b8742a21d0b75f8baccca (patch) | |
tree | 74790ae54c78ea0dfb71329118397dde116ebe44 /ui/app/app.js | |
parent | e6c01abba4b66c6ef98a9d8155439be002dea5cd (diff) | |
download | dexon-wallet-6d13ef691f4162caad6b8742a21d0b75f8baccca.tar.gz dexon-wallet-6d13ef691f4162caad6b8742a21d0b75f8baccca.tar.zst dexon-wallet-6d13ef691f4162caad6b8742a21d0b75f8baccca.zip |
Revert "Interface enhancements"
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 7da03cdd..9538a6b9 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -114,6 +114,7 @@ App.prototype.renderAppBar = function () { alignItems: 'center', visibility: props.isUnlocked ? 'visible' : 'none', background: props.isUnlocked ? 'white' : 'none', + height: '36px', position: 'relative', zIndex: 2, }, @@ -126,6 +127,14 @@ 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, @@ -140,9 +149,8 @@ App.prototype.renderAppBar = function () { // metamask name h('h1', { style: { - position: 'absolute', - left: '50%', - transform: 'translateX(-50%)', + position: 'relative', + left: '9px', }, }, 'MetaMask'), |