mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
24 lines
391 B
SCSS
24 lines
391 B
SCSS
|
.multichain-connected-site-menu {
|
||
|
&__badge {
|
||
|
height: 16px;
|
||
|
width: 16px;
|
||
|
}
|
||
|
|
||
|
&__badge.not-connected {
|
||
|
height: 10px;
|
||
|
width: 10px;
|
||
|
}
|
||
|
|
||
|
&__badge.not-connected::after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: -3px;
|
||
|
left: -3px;
|
||
|
right: -3px;
|
||
|
bottom: -3px;
|
||
|
background: var(--color-background-default);
|
||
|
z-index: -1;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
}
|