aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/unlock.js
diff options
context:
space:
mode:
authorLuis Iván Cuende <me@luisivan.net>2016-12-15 01:38:20 +0800
committerLuis Iván Cuende <me@luisivan.net>2016-12-15 01:38:20 +0800
commitc65db9290dd02b762c0260fe98945f63162f285d (patch)
tree9706362feb8fce2859364c56cf4592816f6fb2ca /ui/app/unlock.js
parentb8ee336f0dd1c0a7d5990ddef22e2d17e09bb1b7 (diff)
downloadtangerine-wallet-browser-c65db9290dd02b762c0260fe98945f63162f285d.tar.gz
tangerine-wallet-browser-c65db9290dd02b762c0260fe98945f63162f285d.tar.zst
tangerine-wallet-browser-c65db9290dd02b762c0260fe98945f63162f285d.zip
Better editable label
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r--ui/app/unlock.js8
1 files changed, 6 insertions, 2 deletions
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'),
]),
])
)