aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorFrankie <email": null>2016-06-06 22:09:21 +0800
committerFrankie <email": null>2016-06-06 22:09:21 +0800
commitf59ca7a6bf42b0cae70aab838a08a7d15e192d10 (patch)
tree4cadecb7f41bbf81c76819ccdc8b4fb4562865ab /ui/app/components
parent217dd9c95e2c398c07d5e88ef35bea0aad1e3a37 (diff)
downloadtangerine-wallet-browser-f59ca7a6bf42b0cae70aab838a08a7d15e192d10.tar.gz
tangerine-wallet-browser-f59ca7a6bf42b0cae70aab838a08a7d15e192d10.tar.zst
tangerine-wallet-browser-f59ca7a6bf42b0cae70aab838a08a7d15e192d10.zip
Add css to resize and alighn input for editable lable
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/editable-label.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js
index 20e24a9c7..c35f3261c 100644
--- a/ui/app/components/editable-label.js
+++ b/ui/app/components/editable-label.js
@@ -18,13 +18,13 @@ EditableLabel.prototype.render = function() {
if (state && state.isEditingLabel) {
return h('div.editable-label', [
- h('input', {
+ h('input.editable-input', {
defaultValue: props.textValue,
onKeyPress:(event) => {
this.saveIfEnter(event)
},
}),
- h('button', {
+ h('button.editable-button', {
onClick:() => this.saveText(),
}, 'Save')
])