Fixed realtime metrics display. Closes #1899.

This commit is contained in:
Mike Cao 2023-04-19 11:46:41 -07:00
parent 9c2242012e
commit 8bd289ad01
2 changed files with 25 additions and 2 deletions

View file

@ -7,4 +7,15 @@
.metrics {
display: flex;
flex-wrap: wrap;
}
.card {
justify-self: flex-start;
}
@media only screen and (max-width: 992px) {
.card {
flex-basis: calc(50% - 20px);
}
}