diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-07-28 09:32:32 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-07-28 09:32:32 +0800 |
commit | a25c4f34c0063a0f3d3b1989d9303cb75952d443 (patch) | |
tree | e7c4b55ec6d334e998f587ad0ad6820d95c7a6ea | |
parent | 87c26eb5bc30941a85de98f885d4eb9a752cf9d6 (diff) | |
download | tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar.gz tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar.bz2 tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar.lz tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar.xz tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.tar.zst tangerine-wallet-browser-a25c4f34c0063a0f3d3b1989d9303cb75952d443.zip |
Limit max width of seed word conf screen
-rw-r--r-- | ui/app/keychains/hd/recover-seed/confirmation.js | 7 |
1 files changed, 5 insertions, 2 deletions
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'), |