mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Limit max width of seed word conf screen
This commit is contained in:
parent
87c26eb5bc
commit
a25c4f34c0
@ -23,7 +23,9 @@ RevealSeedConfirmation.prototype.render = function () {
|
|||||||
|
|
||||||
return (
|
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', {
|
h('h3.flex-center.text-transform-uppercase', {
|
||||||
style: {
|
style: {
|
||||||
@ -61,7 +63,7 @@ RevealSeedConfirmation.prototype.render = function () {
|
|||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
|
||||||
h('.flex-row.flex-space-between', {
|
h('.flex-row.flex-start', {
|
||||||
style: {
|
style: {
|
||||||
marginTop: 30,
|
marginTop: 30,
|
||||||
width: '50%',
|
width: '50%',
|
||||||
@ -74,6 +76,7 @@ RevealSeedConfirmation.prototype.render = function () {
|
|||||||
|
|
||||||
// submit
|
// submit
|
||||||
h('button.primary', {
|
h('button.primary', {
|
||||||
|
style: { marginLeft: '10px' },
|
||||||
onClick: this.revealSeedWords.bind(this),
|
onClick: this.revealSeedWords.bind(this),
|
||||||
}, 'OK'),
|
}, 'OK'),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user