diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-11 15:42:44 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-11 15:42:44 +0800 |
commit | 9954c95b4a582d13c3b184b4e18f240865bc45f9 (patch) | |
tree | b9bcd88d0b62b3bec4c9a64819b2a9e8a2578126 /ui/app/components | |
parent | f23d8c7393732ba2ed3c98f7eead9beb02cd0e92 (diff) | |
download | tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar.gz tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar.bz2 tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar.lz tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar.xz tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.tar.zst tangerine-wallet-browser-9954c95b4a582d13c3b184b4e18f240865bc45f9.zip |
[WIP] Begin fixing responsive layout with many wallets
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/wallet-view.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/ui/app/components/wallet-view.js b/ui/app/components/wallet-view.js index 4f6a67994..db69b5faa 100644 --- a/ui/app/components/wallet-view.js +++ b/ui/app/components/wallet-view.js @@ -242,5 +242,56 @@ WalletView.prototype.render = function () { ]), + h('div.flex-column', {}, [ + + h('div', {}, [ + + h('div.wallet-balance', {}, [ + + h(BalanceComponent, { + balanceValue: selectedAccount.balance, + style: {}, + }), + + ]), + + ]) + + ]), + + h('div.flex-column', {}, [ + + h('div', {}, [ + + h('div.wallet-balance', {}, [ + + h(BalanceComponent, { + balanceValue: selectedAccount.balance, + style: {}, + }), + + ]), + + ]) + + ]), + + h('div.flex-column', {}, [ + + h('div', {}, [ + + h('div.wallet-balance', {}, [ + + h(BalanceComponent, { + balanceValue: selectedAccount.balance, + style: {}, + }), + + ]), + + ]) + + ]), + ]) } |