sprinklers3/app/components/DeviceView.scss

39 lines
740 B
SCSS
Raw Normal View History

2017-10-31 17:23:27 -06:00
.device {
2018-06-26 11:53:22 -06:00
.header {
display: flex !important;
flex-direction: column;
@media only screen and (min-width: 768px) {
flex-direction: row;
2017-10-31 17:23:27 -06:00
}
2018-06-26 11:53:22 -06:00
}
.ui.stackable.grid.in-container > .row > .column {
@media only screen and (max-width: 991px) {
padding-left: 0 !important;
padding-right: 0 !important;
}
}
.ui.stackable.grid.in-container {
margin-top: 0;
}
.connectionState {
@media only screen and (min-width: 768px) {
margin-left: .75em;
}
font-size: .75em;
font-weight: lighter;
2017-10-31 17:23:27 -06:00
2018-06-26 11:53:22 -06:00
&.connected {
color: #13D213;
}
2017-10-31 17:23:27 -06:00
2018-06-26 11:53:22 -06:00
&.disconnected {
color: #D20000;
2017-10-31 17:23:27 -06:00
}
2018-06-26 11:53:22 -06:00
}
2017-10-31 17:23:27 -06:00
}
2018-06-26 11:53:22 -06:00
.sectionRunner .queue {
max-height: 14em;
height: 14em;
overflow-y: scroll;
}