aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-13 01:22:03 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-13 01:36:34 +0800
commite9208be096e8193331b06e1738fd1d3e8afab025 (patch)
treec743481ba04d40726ce2a192f86ba8feeb4c03ec /ui/app
parentff2f5cd58a297e26550cfdc05e2f9231b2ee4e96 (diff)
downloadtangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar.gz
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar.bz2
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar.lz
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar.xz
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.tar.zst
tangerine-wallet-browser-e9208be096e8193331b06e1738fd1d3e8afab025.zip
Size export confirmation input
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/account-export.js6
-rw-r--r--ui/app/components/editable-label.js2
-rw-r--r--ui/app/css/index.css2
3 files changed, 7 insertions, 3 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: () => {} }),
diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js
index cdd0c4c10..41c129d4e 100644
--- a/ui/app/components/editable-label.js
+++ b/ui/app/components/editable-label.js
@@ -18,7 +18,7 @@ EditableLabel.prototype.render = function() {
if (state && state.isEditingLabel) {
return h('div.editable-label', [
- h('input.editable-input', {
+ h('input.sizing-input', {
defaultValue: props.textValue,
onKeyPress:(event) => {
this.saveIfEnter(event)
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index 1e59928d0..7055b0d5c 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -223,7 +223,7 @@ app sections
padding: 8px;*/
}
-.editable-input{
+.sizing-input{
font-size: 1em;
height: 31px;
}