diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-07-08 08:36:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 08:36:28 +0800 |
commit | 6d44eaefcbfb860c0982225fb17227c73097e649 (patch) | |
tree | 4dc2ad4a589d66550be15f69dd590f42575a5db0 /ui/app/components/eth-balance.js | |
parent | 44a45f38be5251eacd2c43ebbc55acf34f65084c (diff) | |
parent | d2eab80e093d9a1b2d6914274ade25fa10351a22 (diff) | |
download | tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar.gz tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar.bz2 tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar.lz tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar.xz tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.tar.zst tangerine-wallet-browser-6d44eaefcbfb860c0982225fb17227c73097e649.zip |
Merge pull request #419 from MetaMask/ConfirmationStyle
Tx Confirmation - fixes
Diffstat (limited to 'ui/app/components/eth-balance.js')
-rw-r--r-- | ui/app/components/eth-balance.js | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/ui/app/components/eth-balance.js b/ui/app/components/eth-balance.js index 301674083..75b6dcb43 100644 --- a/ui/app/components/eth-balance.js +++ b/ui/app/components/eth-balance.js @@ -56,16 +56,20 @@ EthBalanceComponent.prototype.renderBalance = function (value) { }, [ h(tagName, { style: { - fontSize: props.fontSize || '12px', - }, - }, balance + ' '), - h(tagName, { - style: { color: props.labelColor || '#AEAEAE', fontSize: props.fontSize || '12px', }, - }, label), + }, [ + h('div', balance), + h('div', { + style: { + color: '#AEAEAE', + fontSize: '12px', + }, + }, label), + ]), ]), ]) + ) } |