From c65db9290dd02b762c0260fe98945f63162f285d Mon Sep 17 00:00:00 2001 From: Luis Iván Cuende Date: Wed, 14 Dec 2016 09:38:20 -0800 Subject: Better editable label --- ui/app/unlock.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ui/app/unlock.js') diff --git a/ui/app/unlock.js b/ui/app/unlock.js index 17416766d..7193a8b2d 100644 --- a/ui/app/unlock.js +++ b/ui/app/unlock.js @@ -63,7 +63,10 @@ UnlockScreen.prototype.render = function () { h('button.primary.cursor-pointer', { onClick: this.onSubmit.bind(this), style: { - margin: 10, + position: 'absolute', + bottom: 0, + left: 0, + width: '100%', }, }, 'Unlock'), ]), @@ -72,11 +75,12 @@ UnlockScreen.prototype.render = function () { h('p.pointer', { onClick: () => this.props.dispatch(actions.goBackToInitView()), style: { + marginTop: '1rem', fontSize: '0.8em', color: 'rgb(247, 134, 28)', textDecoration: 'underline', }, - }, 'I forgot my password.'), + }, 'I forgot my password'), ]), ]) ) -- cgit