Merge pull request #1283 from MetaMask/i1267-textfix

Fix potential formatting issues for seed word display.
feature/default_network_editable
kumavis 8 years ago committed by GitHub
commit ac7782e58a
  1. 1
      ui/app/css/index.css
  2. 11
      ui/app/keychains/hd/create-vault-complete.js

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

@ -45,12 +45,17 @@ CreateVaultCompleteScreen.prototype.render = function () {
'Vault Created',
]),
h('span.error', { // Error for the right red
h('div', {
style: {
padding: '12px 20px 0px 20px',
width: '360px',
height: '78px',
fontSize: '1em',
marginTop: '10px',
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', {
readOnly: true,

Loading…
Cancel
Save