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.
25 lines
499 B
25 lines
499 B
7 years ago
|
.device {
|
||
|
.header {
|
||
|
display: flex !important;
|
||
|
flex-direction: column;
|
||
|
@media only screen and (min-width : 768px) {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
}
|
||
|
.connectionState {
|
||
|
@media only screen and (min-width : 768px) {
|
||
|
margin-left: .75em;
|
||
|
}
|
||
|
font-size: .75em;
|
||
|
font-weight: lighter;
|
||
|
|
||
|
&.connected {
|
||
|
color: #13D213;
|
||
|
}
|
||
|
|
||
|
&.disconnected {
|
||
|
color: #D20000;
|
||
|
}
|
||
|
}
|
||
|
}
|