aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/new-account-modal.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/modals/new-account-modal.js')
-rw-r--r--ui/app/components/modals/new-account-modal.js19
1 files changed, 8 insertions, 11 deletions
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js
index 90a3b7c99..c44b79a2e 100644
--- a/ui/app/components/modals/new-account-modal.js
+++ b/ui/app/components/modals/new-account-modal.js
@@ -33,34 +33,31 @@ NewAccountModal.prototype.render = function () {
return h('div', {}, [
h('div.new-account-modal-wrapper', {
}, [
- h('div', {}, [
+ h('div.new-account-modal-header', {}, [
'New Account',
]),
- h('div', {}, [
- h('i.fa.fa-times', {}, [
- ]),
- ]),
+ h('div.modal-close-x', {}),
- h('div', {}, [
+ h('div.new-account-modal-content', {}, [
'Account Name',
]),
- h('div', {}, [
- h('input', {
+ h('div.new-account-input-wrapper', {}, [
+ h('input.new-account-input', {
placeholder: 'E.g. My new account'
}, []),
]),
- h('div', {}, [
+ h('div.new-account-modal-content', {}, [
'or',
]),
- h('div', {}, [
+ h('div.new-account-modal-content.import', {}, [
'Import an account',
]),
- h('div', {}, [
+ h('div.new-account-modal-content.button', {}, [
h('button.btn-clear', {}, [
'SAVE',
]),