fix mobile filters

This commit is contained in:
Sam Lavigne 2023-08-20 15:31:30 -04:00
parent 98119d992d
commit 6f79930100
1 changed files with 6 additions and 5 deletions

View File

@ -372,6 +372,12 @@
justify-content: center;
}
@media only screen and (max-width: 1400px) {
.filters-holder {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 600px) {
main {
grid-template-areas:
@ -412,9 +418,4 @@
padding: 0;
}
}
@media only screen and (max-width: 1400px) {
.filters-holder {
grid-template-columns: repeat(2, 1fr);
}
}
</style>