1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix potential formatting issues for seed word display.

This commit is contained in:
Kevin Serrano 2017-03-29 11:51:04 -04:00
parent 7c09bde412
commit cb34eda6c6
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
2 changed files with 8 additions and 4 deletions

View File

@ -148,7 +148,6 @@ h2.page-subtitle {
} }
textarea.twelve-word-phrase { textarea.twelve-word-phrase {
margin-top: 20px;
padding: 12px; padding: 12px;
width: 300px; width: 300px;
height: 140px; height: 140px;

View File

@ -45,12 +45,17 @@ CreateVaultCompleteScreen.prototype.render = function () {
'Vault Created', 'Vault Created',
]), ]),
h('span.error', { // Error for the right red h('div', {
style: { style: {
padding: '12px 20px 0px 20px', width: '360px',
height: '78px',
fontSize: '1em',
marginTop: '10px',
textAlign: 'center', textAlign: 'center',
}, },
}, 'These 12 words can restore all of your MetaMask accounts for this vault.\nSave them somewhere safe and secret.'), }, [
h('span.error', 'These 12 words can restore all of your MetaMask accounts for this vault.\nSave them somewhere safe and secret.'),
]),
h('textarea.twelve-word-phrase', { h('textarea.twelve-word-phrase', {
readOnly: true, readOnly: true,