diff options
author | Alexander Tseung <alextsg@users.noreply.github.com> | 2017-10-14 04:23:50 +0800 |
---|---|---|
committer | Daniel Tsui <szehungdanieltsui@gmail.com> | 2017-10-14 04:23:50 +0800 |
commit | 6defb880fb46a5449ade85ced70a5df43472a679 (patch) | |
tree | ee0880299bc1d89434c1cfb09e609e78fc02efe8 /ui/app/accounts | |
parent | 222a203353dd977f497d44bf6581c16200b5de4f (diff) | |
download | tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar.gz tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar.bz2 tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar.lz tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar.xz tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.tar.zst tangerine-wallet-browser-6defb880fb46a5449ade85ced70a5df43472a679.zip |
Fix SELECT TYPE dropdown changing sizes based on error message (#2359)
Diffstat (limited to 'ui/app/accounts')
-rw-r--r-- | ui/app/accounts/import/index.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js index 97b387229..821bb6efe 100644 --- a/ui/app/accounts/import/index.js +++ b/ui/app/accounts/import/index.js @@ -34,8 +34,9 @@ AccountImportSubview.prototype.render = function () { const { type } = state return ( - h('div', { + h('div.flex-center', { style: { + flexDirection: 'column', }, }, [ h('.section-title.flex-row.flex-center', [ @@ -48,7 +49,8 @@ AccountImportSubview.prototype.render = function () { ]), h('div', { style: { - padding: '10px', + padding: '10px 0', + width: '260px', color: 'rgb(174, 174, 174)', }, }, [ |