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.
61 lines
958 B
61 lines
958 B
5 years ago
|
.connected-status-indicator {
|
||
4 years ago
|
display: flex;
|
||
5 years ago
|
align-items: center;
|
||
5 years ago
|
place-self: center start;
|
||
5 years ago
|
background: none;
|
||
|
font-size: inherit;
|
||
5 years ago
|
padding: 8px;
|
||
|
border-radius: 100px;
|
||
|
|
||
|
&:hover {
|
||
4 years ago
|
background-color: #f2f3f4;
|
||
5 years ago
|
}
|
||
|
|
||
|
&:active {
|
||
4 years ago
|
background-color: #ededed;
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
5 years ago
|
&__inner-circle {
|
||
|
border-radius: 4px;
|
||
|
height: 4px;
|
||
|
width: 4px;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
4 years ago
|
&__green-circle,
|
||
|
&__yellow-circle,
|
||
|
&__grey-circle {
|
||
5 years ago
|
border-radius: 4px;
|
||
|
height: 8px;
|
||
|
width: 8px;
|
||
5 years ago
|
border: 1px solid transparent;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__green-circle {
|
||
4 years ago
|
border-color: #4cd964;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__green-circle &__inner-circle {
|
||
4 years ago
|
background-color: #4cd964;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__yellow-circle {
|
||
4 years ago
|
border-color: #ffd33d;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__grey-circle {
|
||
5 years ago
|
border-color: $Grey-500;
|
||
5 years ago
|
}
|
||
|
|
||
|
&__text {
|
||
4 years ago
|
@include H8;
|
||
|
|
||
5 years ago
|
color: $Grey-500;
|
||
5 years ago
|
margin-left: 6px;
|
||
|
white-space: nowrap;
|
||
5 years ago
|
}
|
||
5 years ago
|
}
|