[WIP] Begin fixing responsive layout with many wallets

feature/default_network_editable
sdtsui 7 years ago
parent f23d8c7393
commit 9954c95b4a
  1. 51
      ui/app/components/wallet-view.js
  2. 8
      ui/app/css/itcss/components/transaction-list.scss

@ -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: {},
}),
]),
])
]),
])
}

@ -7,8 +7,12 @@
@media screen and (max-width: $break-small) {
.tx-list-header-wrapper {
margin-top: 1em;
margin-bottom: 1.4em;
margin-top: 0.2em;
margin-bottom: 0.6em;
// TODO: Resolve Layout Conflicst in Wallet View
// - This fixes txlist "transactions" title dispay
// margin-top: 0.2em;
// margin-bottom: 0.6em;
justify-content: center;
}

Loading…
Cancel
Save