mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
[WIP] Begin fixing responsive layout with many wallets
This commit is contained in:
parent
f23d8c7393
commit
9954c95b4a
@ -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) {
|
@media screen and (max-width: $break-small) {
|
||||||
.tx-list-header-wrapper {
|
.tx-list-header-wrapper {
|
||||||
margin-top: 1em;
|
margin-top: 0.2em;
|
||||||
margin-bottom: 1.4em;
|
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;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user