sprinklers3/app/components/DeviceView.scss

25 lines
499 B
SCSS
Raw Normal View History

2017-10-31 17:23:27 -06:00
.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;
}
}
}