diff options
author | Alexander Tseung <alextsg@users.noreply.github.com> | 2018-03-07 01:14:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 01:14:57 +0800 |
commit | 5f8a632fec0e83b148e4e0b7fc95339fb870d804 (patch) | |
tree | d2d0fbe89aab50636df4d0412798be3732984f22 /ui | |
parent | 9734969e5d09e73778f18e9842ecb4677589a722 (diff) | |
download | tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar.gz tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar.bz2 tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar.lz tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar.xz tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.tar.zst tangerine-wallet-browser-5f8a632fec0e83b148e4e0b7fc95339fb870d804.zip |
Fix seed phrase validation clearing form (#3417)
* Fix seed phrase validation clearing form
* Make new ui import seed error feedback live, and allow newlines with and without carriage returns.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/app.js | 8 | ||||
-rw-r--r-- | ui/app/css/itcss/components/header.scss | 7 |
2 files changed, 7 insertions, 8 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index d243e72a4..4e6da24c3 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -288,10 +288,10 @@ App.prototype.renderAppBar = function () { }), // metamask name - h('h1', 'MetaMask'), - - h('div.beta-label', 'BETA'), - + h('.flex-row', [ + h('h1', 'MetaMask'), + h('div.beta-label', 'BETA'), + ]), ]), h('div.header__right-actions', [ diff --git a/ui/app/css/itcss/components/header.scss b/ui/app/css/itcss/components/header.scss index d91ab3c48..eeed9ee06 100644 --- a/ui/app/css/itcss/components/header.scss +++ b/ui/app/css/itcss/components/header.scss @@ -80,11 +80,10 @@ font-family: Roboto; text-transform: uppercase; font-weight: 500; - font-size: 0.8rem; - padding-left: 9px; + font-size: .8rem; color: $buttercup; - align-self: flex-start; - margin-top: 10px; + margin-left: 5px; + line-height: initial; @media screen and (max-width: 575px) { display: none; |