diff options
ui - redesign - sendTransaction
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r-- | ui/app/unlock.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/unlock.js b/ui/app/unlock.js index 512906c67..687bb5e52 100644 --- a/ui/app/unlock.js +++ b/ui/app/unlock.js @@ -41,7 +41,7 @@ UnlockScreen.prototype.render = function() { }, }, 'MetaMask'), - h('input.password-box', { + h('input.large-input', { type: 'password', id: 'password-box', placeholder: 'enter password', @@ -60,6 +60,9 @@ UnlockScreen.prototype.render = function() { h('button.primary.cursor-pointer', { onClick: this.onSubmit.bind(this), + style: { + margin: 10, + }, }, 'Unlock'), ]) |