Make monitor filters flex, and wrap when on mobile

This commit is contained in:
Isaac Connor
2023-01-25 13:26:47 -05:00
parent c8e4dcbe51
commit 4826b2edf4

View File

@@ -856,3 +856,12 @@ a.flip {
border-radius: 0;
border: none;
}
.controlHeader {
display: flex;
}
@media screen and (max-width:767px) {
.controlHeader {
display: flex;
flex-wrap: wrap;
}
}