aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 7da03cdd1..9538a6b93 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'),