diff options
-rw-r--r-- | ui/app/app.js | 5 | ||||
-rw-r--r-- | ui/app/css/index.css | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index ba891f1cf..7da03cdd1 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -140,8 +140,9 @@ App.prototype.renderAppBar = function () { // metamask name h('h1', { style: { - position: 'relative', - left: '9px', + position: 'absolute', + left: '50%', + transform: 'translateX(-50%)', }, }, 'MetaMask'), diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 7fba8204e..6ce426094 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -163,9 +163,6 @@ textarea.twelve-word-phrase { } .network-name { - position: absolute; - top: 8px; - left: 60px; width: 5.2em; line-height: 9px; text-rendering: geometricPrecision; |