aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-01-18 12:08:29 +0800
committerChi Kei Chan <chikeichan@gmail.com>2018-01-19 05:34:57 +0800
commitb05d21b1ba308bdb5b758d53dd79593a7a2bf26e (patch)
treef72581d61533ab4b533f46e954276c52b0267964 /ui/app/components
parent5fff2e19d8ff6fa50da5696b3c42f5cf1f359744 (diff)
downloadtangerine-wallet-browser-b05d21b1ba308bdb5b758d53dd79593a7a2bf26e.tar.gz
tangerine-wallet-browser-b05d21b1ba308bdb5b758d53dd79593a7a2bf26e.tar.zst
tangerine-wallet-browser-b05d21b1ba308bdb5b758d53dd79593a7a2bf26e.zip
Fix transaction list font sizes, padding
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/tx-list-item.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js
index 8a9253d4d..7ccc5c315 100644
--- a/ui/app/components/tx-list-item.js
+++ b/ui/app/components/tx-list-item.js
@@ -234,11 +234,7 @@ TxListItem.prototype.render = function () {
style: {},
}, [
- h('span', {
- className: classnames('tx-list-value', {
- 'tx-list-value--confirmed': transactionStatus === 'confirmed',
- }),
- }, total),
+ h('span.tx-list-value', total),
showFiatTotal && h('span.tx-list-fiat-value', fiatTotal),