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 /mascara/src/app/first-time/index.css | |
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 'mascara/src/app/first-time/index.css')
-rw-r--r-- | mascara/src/app/first-time/index.css | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/mascara/src/app/first-time/index.css b/mascara/src/app/first-time/index.css index 109946e1d..f59eb4ce1 100644 --- a/mascara/src/app/first-time/index.css +++ b/mascara/src/app/first-time/index.css @@ -1,11 +1,11 @@ .first-time-flow { - height: 100vh; width: 100vw; - background-color: #FFF; + background-color: #fff; overflow: auto; display: flex; justify-content: center; + flex: 1 0 auto; } .alpha-warning { @@ -45,12 +45,12 @@ .buy-ether { display: flex; flex-flow: column nowrap; - margin: 67px 0 50px 146px; + margin: 67px 0 50px; max-width: 35rem; } .create-password { - margin: 67px 0 50px 0px; + margin: 67px 0 50px; } .import-account { @@ -418,6 +418,10 @@ button.backup-phrase__confirm-seed-option:hover { line-height: 23px; } +.import-account__input-label__disabled { + opacity: 0.5; +} + .import-account__input { width: 325px !important; } @@ -564,6 +568,10 @@ button.backup-phrase__confirm-seed-option:hover { background-color: #FFFFFF; } +.first-time-flow__input__disabled { + opacity: 0.5; +} + .first-time-flow__input::placeholder { color: #9B9B9B; font-weight: 200; |