diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-08-08 01:51:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 01:51:18 +0800 |
commit | 57abc58d623b66a091987a944d8c45737f4feabe (patch) | |
tree | 546623f2e7f98dc745afe924e3937da722894820 /ui/app/keychains/hd | |
parent | 2ba5737728d2539fc3bc9015e440f37341219cdc (diff) | |
parent | 50fc9c965842f023180630267ecd8dc4f47e9cd6 (diff) | |
download | tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.gz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.bz2 tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.lz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.xz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.zst tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.zip |
Merge pull request #1835 from MetaMask/NewUI
Begin UI Refactor with Responsiveness & New Menus
Diffstat (limited to 'ui/app/keychains/hd')
-rw-r--r-- | ui/app/keychains/hd/create-vault-complete.js | 2 | ||||
-rw-r--r-- | ui/app/keychains/hd/recover-seed/confirmation.js | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/ui/app/keychains/hd/create-vault-complete.js b/ui/app/keychains/hd/create-vault-complete.js index a318a9b50..c32751fff 100644 --- a/ui/app/keychains/hd/create-vault-complete.js +++ b/ui/app/keychains/hd/create-vault-complete.js @@ -47,8 +47,6 @@ CreateVaultCompleteScreen.prototype.render = function () { h('div', { style: { - width: '360px', - height: '78px', fontSize: '1em', marginTop: '10px', textAlign: 'center', diff --git a/ui/app/keychains/hd/recover-seed/confirmation.js b/ui/app/keychains/hd/recover-seed/confirmation.js index 4ccbec9fc..4335186a5 100644 --- a/ui/app/keychains/hd/recover-seed/confirmation.js +++ b/ui/app/keychains/hd/recover-seed/confirmation.js @@ -23,7 +23,9 @@ RevealSeedConfirmation.prototype.render = function () { return ( - h('.initialize-screen.flex-column.flex-center.flex-grow', [ + h('.initialize-screen.flex-column.flex-center.flex-grow', { + style: { maxWidth: '420px' }, + }, [ h('h3.flex-center.text-transform-uppercase', { style: { @@ -61,7 +63,7 @@ RevealSeedConfirmation.prototype.render = function () { }, }), - h('.flex-row.flex-space-between', { + h('.flex-row.flex-start', { style: { marginTop: 30, width: '50%', @@ -74,6 +76,7 @@ RevealSeedConfirmation.prototype.render = function () { // submit h('button.primary', { + style: { marginLeft: '10px' }, onClick: this.revealSeedWords.bind(this), }, 'OK'), |