1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Fix alignment of ellipsis and address in wallet view. (#3198)

This commit is contained in:
Dan J Miller 2018-02-06 21:21:32 -03:30 committed by Alexander Tseung
parent d84dc5da42
commit 9ed3a5512e
3 changed files with 3 additions and 2 deletions

View File

@ -111,7 +111,7 @@ TokenCell.prototype.render = function () {
network,
}),
h('div.token-list-item__balance-wrapper', null, [
h('div.token-list-item__balance-ellipsis', null, [
h('div.token-list-item__balance-wrapper', null, [
h('h3.token-list-item__token-balance', `${string || 0} ${symbol}`),

View File

@ -105,6 +105,7 @@ $wallet-view-bg: $alabaster;
&__tooltip {
display: flex;
justify-content: center;
align-items: center;
padding: 24px;
}

View File

@ -51,7 +51,7 @@ $wallet-balance-breakpoint-range: "screen and (min-width: #{$break-large}) and (
&__balance-ellipsis {
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
}
&__ellipsis {