ui - fix account-export margin

feature/default_network_editable
kumavis 9 years ago
parent 46f1ab8b48
commit b8ad7f2cb1
  1. 11
      ui/app/components/account-export.js

@ -31,7 +31,14 @@ ExportAccountView.prototype.render = function() {
and you should only do it if you know what you're doing.`
var confirmation = `If you're absolutely sure, type "I understand" below and
submit.`
return h('div', { key: 'exporting' }, [
return (
h('div', {
key: 'exporting',
style: {
margin: '0 20px',
},
}, [
h('p.error', warning),
h('p', confirmation),
h('input#exportAccount', {
@ -44,6 +51,8 @@ ExportAccountView.prototype.render = function() {
onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address))
}, 'Cancel'),
])
)
}
if (accountExported) {

Loading…
Cancel
Save