aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/unlock.js
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-12-15 08:46:36 +0800
committerGitHub <noreply@github.com>2016-12-15 08:46:36 +0800
commite6c01abba4b66c6ef98a9d8155439be002dea5cd (patch)
tree221def76735c59e00fc7a511e260f835210a9057 /ui/app/unlock.js
parent9e3fa3cfba20299413df87d18158180c7798d2ac (diff)
parent3969526403c487eb45f8a34774b3267ab126cdda (diff)
downloadtangerine-wallet-browser-e6c01abba4b66c6ef98a9d8155439be002dea5cd.tar.gz
tangerine-wallet-browser-e6c01abba4b66c6ef98a9d8155439be002dea5cd.tar.zst
tangerine-wallet-browser-e6c01abba4b66c6ef98a9d8155439be002dea5cd.zip
Merge pull request #920 from luisivan/dev
Interface enhancements
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'),
]),
])
)