mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
c88efadf1e
* Remove ETH badge from NetworkAccountBalanceHeader when on non-ETH networks * Network specific icons, or fallback, in the network-account-balance-header * Update snapshots * Code cleanup Co-authored-by: Dan Miller <danjm.com@gmail.com>
28 lines
672 B
SCSS
28 lines
672 B
SCSS
.network-account-balance-header {
|
|
border-top: 1px solid var(--color-border-muted);
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
&__network-account {
|
|
&__ident-icon-ethereum,
|
|
&__ident-icon-ethereum--gray {
|
|
height: 18px;
|
|
width: 18px;
|
|
border-radius: 50%;
|
|
border: 1px solid var(--color-background-default);
|
|
background: var(--color-background-default);
|
|
margin-inline-start: -10px;
|
|
margin-top: -20px;
|
|
|
|
> span {
|
|
display: flex;
|
|
justify-content: center;
|
|
line-height: 18px;
|
|
}
|
|
}
|
|
|
|
&__ident-icon-ethereum--gray {
|
|
border: 1px solid var(--color-border-default);
|
|
}
|
|
}
|
|
}
|