From 870e05b2404339d1f426d246f53f8def3c3462fd Mon Sep 17 00:00:00 2001 From: kumavis Date: Thu, 26 May 2016 15:11:22 -0700 Subject: ui - redesign - init + vault create/restore + seed --- ui/app/first-time/init-menu.js | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'ui/app/first-time/init-menu.js') diff --git a/ui/app/first-time/init-menu.js b/ui/app/first-time/init-menu.js index 2d54e7e19..197193063 100644 --- a/ui/app/first-time/init-menu.js +++ b/ui/app/first-time/init-menu.js @@ -50,10 +50,20 @@ InitializeMenuScreen.prototype.renderMenu = function() { animationEventEmitter: this.animationEventEmitter, }), - h('h2.page-subtitle', 'MetaMask'), - - h('button.btn-thin', { + h('h1', { + style: { + fontSize: '1.4em', + textTransform: 'uppercase', + color: '#7F8082', + marginBottom: 20, + }, + }, 'MetaMask'), + + h('button.primary', { onClick: this.showCreateVault.bind(this), + style: { + margin: 12, + }, }, 'Create New Vault'), h('.flex-row.flex-center.flex-grow', [ @@ -62,8 +72,11 @@ InitializeMenuScreen.prototype.renderMenu = function() { h('hr'), ]), - h('button.btn-thin', { + h('button.primary', { onClick: this.showRestoreVault.bind(this), + style: { + margin: 12, + }, }, 'Restore Existing Vault'), ]) -- cgit