aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorLuis Iván Cuende <me@luisivan.net>2016-12-15 02:03:56 +0800
committerLuis Iván Cuende <me@luisivan.net>2016-12-15 02:03:56 +0800
commit4a8bc63c8d8cd4191bbfc0e13077f2356ea7cfbc (patch)
tree8cf26be733dae29057587ba828dba8dd33935e5e /ui/app/components
parentc65db9290dd02b762c0260fe98945f63162f285d (diff)
downloadtangerine-wallet-browser-4a8bc63c8d8cd4191bbfc0e13077f2356ea7cfbc.tar.gz
tangerine-wallet-browser-4a8bc63c8d8cd4191bbfc0e13077f2356ea7cfbc.tar.zst
tangerine-wallet-browser-4a8bc63c8d8cd4191bbfc0e13077f2356ea7cfbc.zip
Better account details view
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/editable-label.js5
-rw-r--r--ui/app/components/tooltip.js2
-rw-r--r--ui/app/components/transaction-list.js3
3 files changed, 6 insertions, 4 deletions
diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js
index bc0f9a5b2..14c0294a2 100644
--- a/ui/app/components/editable-label.js
+++ b/ui/app/components/editable-label.js
@@ -13,7 +13,10 @@ function EditableLabel () {
EditableLabel.prototype.render = function () {
return h('div.name-label', {
contentEditable: true,
- style: { outline: 'none' },
+ style: {
+ outline: 'none',
+ marginTop: '0.5rem',
+ },
onInput: (event) => this.saveText(),
}, this.props.children)
}
diff --git a/ui/app/components/tooltip.js b/ui/app/components/tooltip.js
index edbc074bb..efab2c497 100644
--- a/ui/app/components/tooltip.js
+++ b/ui/app/components/tooltip.js
@@ -17,6 +17,6 @@ Tooltip.prototype.render = function () {
return h(ReactTooltip, {
position: position || 'left',
title,
- fixed: false,
+ fixed: true,
}, children)
}
diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js
index 7e1bedb05..f6a4ed07e 100644
--- a/ui/app/components/transaction-list.js
+++ b/ui/app/components/transaction-list.js
@@ -79,10 +79,9 @@ TransactionList.prototype.render = function () {
height: '100%',
},
}, [
- 'No transaction history.',
+ 'No transaction history',
]),
]),
])
)
}
-