A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/app/connected-status-indicator/index.scss

58 lines
1.0 KiB

.connected-status-indicator {
display: flex;
align-items: center;
place-self: center start;
background: none;
font-size: inherit;
padding: 8px;
border-radius: 100px;
&:hover,
&:active {
background-color: var(--color-background-alternative);
}
&__inner-circle {
border-radius: 4px;
height: 4px;
width: 4px;
background-color: transparent;
}
&__green-circle,
&__yellow-circle,
&__grey-circle {
border-radius: 4px;
height: 8px;
width: 8px;
border: 1px solid transparent;
display: flex;
align-items: center;
justify-content: center;
}
&__green-circle {
border-color: var(--color-success-default);
}
&__green-circle &__inner-circle {
background-color: var(--color-success-default);
}
&__yellow-circle {
border-color: var(--color-warning-default);
}
&__grey-circle {
border-color: var(--color-border-default);
}
&__text {
@include H8;
color: var(--color-text-alternative);
margin-left: 6px;
white-space: nowrap;
}
}