2018-04-16 23:30:58 +00:00
|
|
|
@import 'common/sass/variables';
|
|
|
|
|
|
|
|
.NetworkStatus {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
margin-right: 4px;
|
|
|
|
border-radius: 100%;
|
|
|
|
|
|
|
|
&.is-online {
|
2018-06-27 04:51:42 +00:00
|
|
|
background: color(brand-success);
|
2018-04-16 23:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-offline {
|
2018-06-27 04:51:42 +00:00
|
|
|
background: color(brand-danger);
|
2018-04-16 23:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-connecting {
|
2018-06-27 04:51:42 +00:00
|
|
|
background: color(brand-warning);
|
2018-04-16 23:30:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-text {
|
2018-06-27 04:51:42 +00:00
|
|
|
color: shade-dark(0.4);
|
2018-04-16 23:30:58 +00:00
|
|
|
font-size: 9px;
|
|
|
|
}
|
|
|
|
}
|