aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/account-export.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/account-export.js')
-rw-r--r--ui/app/components/account-export.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/components/account-export.js b/ui/app/components/account-export.js
index eab9baf65..e31951a7d 100644
--- a/ui/app/components/account-export.js
+++ b/ui/app/components/account-export.js
@@ -42,8 +42,12 @@ ExportAccountView.prototype.render = function() {
}, [
h('p.error', warning),
h('p', confirmation),
- h('input#exportAccount', {
+ h('input#exportAccount.sizing-input', {
onKeyPress: this.onExportKeyPress.bind(this),
+ style: {
+ position: 'relative',
+ top: '1.5px',
+ }
}),
h('button', {
onClick: () => this.onExportKeyPress({ key: 'Enter', preventDefault: () => {} }),