1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/connected-status-indicator/index.scss

61 lines
970 B
SCSS
Raw Normal View History

.connected-status-indicator {
display: flex;
align-items: center;
place-self: center start;
background: none;
font-size: inherit;
padding: 8px;
border-radius: 100px;
&:hover {
background-color: #f2f3f4;
}
&:active {
background-color: #ededed;
}
2020-05-20 22:42:18 +02:00
&__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;
2020-05-20 22:42:18 +02:00
border: 1px solid transparent;
display: flex;
align-items: center;
justify-content: center;
}
&__green-circle {
border-color: #4cd964;
2020-05-20 22:42:18 +02:00
}
&__green-circle &__inner-circle {
background-color: #4cd964;
}
&__yellow-circle {
border-color: #ffd33d;
}
&__grey-circle {
border-color: var(--Grey-500);
}
&__text {
@include H8;
color: var(--Grey-500);
margin-left: 6px;
white-space: nowrap;
}
2020-05-20 22:42:18 +02:00
}