diff options
author | Dan J Miller <danjm.com@gmail.com> | 2018-02-01 05:41:13 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@users.noreply.github.com> | 2018-02-01 05:41:13 +0800 |
commit | 971112d413fd30ee1607a0516c1b030976067db8 (patch) | |
tree | cd1e671e0ec79425f0b42dba0d31e6f58c85cdd5 /ui | |
parent | 83784451127e7d0985c0d955f9ce6fbbbbfbcb83 (diff) | |
download | tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar.gz tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar.bz2 tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar.lz tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar.xz tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.tar.zst tangerine-wallet-browser-971112d413fd30ee1607a0516c1b030976067db8.zip |
[NewUI] Updates capitalization and alignment for the import account screen. (#3122)
* Updates capitalization and alignment for the import account screen.
* Align elements in import form.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/accounts/import/index.js | 2 | ||||
-rw-r--r-- | ui/app/accounts/import/private-key.js | 19 | ||||
-rw-r--r-- | ui/app/css/itcss/components/new-account.scss | 25 |
3 files changed, 35 insertions, 11 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js index 0c901c09b..71eb9ae23 100644 --- a/ui/app/accounts/import/index.js +++ b/ui/app/accounts/import/index.js @@ -37,7 +37,7 @@ AccountImportSubview.prototype.render = function () { h('div.new-account-import-form__select-section', [ - h('div.new-account-import-form__select-label', 'SELECT TYPE'), + h('div.new-account-import-form__select-label', 'Select Type'), h(Select, { className: 'new-account-import-form__select', diff --git a/ui/app/accounts/import/private-key.js b/ui/app/accounts/import/private-key.js index 43afbca87..12f3a6430 100644 --- a/ui/app/accounts/import/private-key.js +++ b/ui/app/accounts/import/private-key.js @@ -32,15 +32,20 @@ PrivateKeyImportView.prototype.render = function () { return ( h('div.new-account-import-form__private-key', [ - h('span.new-account-create-form__instruction', 'Paste your private key string here:'), - h('input.new-account-import-form__input-password', { - type: 'password', - id: 'private-key-box', - onKeyPress: () => this.createKeyringOnEnter(), - }), + h('div.new-account-import-form__private-key-password-container', [ - h('div.new-account-create-form__buttons', {}, [ + h('span.new-account-import-form__instruction', 'Paste your private key string here:'), + + h('input.new-account-import-form__input-password', { + type: 'password', + id: 'private-key-box', + onKeyPress: () => this.createKeyringOnEnter(), + }), + + ]), + + h('div.new-account-import-form__buttons', {}, [ h('button.new-account-create-form__button-cancel', { onClick: () => goHome(), diff --git a/ui/app/css/itcss/components/new-account.scss b/ui/app/css/itcss/components/new-account.scss index c5e4ea761..81f919df3 100644 --- a/ui/app/css/itcss/components/new-account.scss +++ b/ui/app/css/itcss/components/new-account.scss @@ -55,11 +55,17 @@ } .new-account-import-form { + display: flex; + flex-flow: column; + align-items: center; + padding: 0 30px; + &__select-section { display: flex; - justify-content: space-evenly; + justify-content: space-between; align-items: center; margin-top: 29px; + width: 100%; } &__select-label { @@ -91,19 +97,25 @@ } } + &__private-key-password-container { + display: flex; + flex-flow: column; + align-items: center; + width: 100%; + } + &__instruction { color: $scorpion; font-family: Roboto; font-size: 16px; line-height: 21px; align-self: flex-start; - margin-left: 30px; } &__private-key { display: flex; flex-flow: column; - align-items: center; + align-items: flex-start; margin-top: 34px; } @@ -126,6 +138,13 @@ align-items: center; margin-top: 29px; } + + &__buttons { + margin-top: 39px; + display: flex; + width: 100%; + justify-content: space-between; + } } .new-account-create-form { |