mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
28 lines
435 B
SCSS
28 lines
435 B
SCSS
.multichain-connected-site-menu {
|
|
height: 24px;
|
|
width: 24px;
|
|
padding: 0;
|
|
|
|
&__badge {
|
|
height: 12px;
|
|
width: 12px;
|
|
}
|
|
|
|
&__badge.not-connected {
|
|
height: 8px;
|
|
width: 8px;
|
|
}
|
|
|
|
&__badge.not-connected::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: -2px;
|
|
left: -2px;
|
|
right: -2px;
|
|
bottom: -2px;
|
|
background: var(--color-background-default);
|
|
z-index: -1;
|
|
border-radius: 50%;
|
|
}
|
|
}
|