diff options
-rw-r--r-- | ui/app/components/eth-balance.js | 5 | ||||
-rw-r--r-- | ui/app/components/pending-tx-details.js | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js index 9e445fe3f..75b6dcb43 100644 --- a/ui/app/components/eth-balance.js +++ b/ui/app/components/eth-balance.js @@ -56,11 +56,6 @@ EthBalanceComponent.prototype.renderBalance = function (value) { }, [ h(tagName, { style: { - fontSize: props.fontSize || '12px', - }, - }, balance + ' '), - h(tagName, { - style: { color: props.labelColor || '#AEAEAE', fontSize: props.fontSize || '12px', }, diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js index b2c16e772..a652d168d 100644 --- a/ui/app/components/pending-tx-details.js +++ b/ui/app/components/pending-tx-details.js @@ -69,6 +69,7 @@ PTXP.render = function () { }, h(EtherBalance, { value: balance, inline: true, + labelColor: '#F7861C', })), ]), |