Mobile grid elements hidden at larger breakpoints.

This commit is contained in:
Thomas Smith 2022-09-28 20:31:14 -04:00
parent 62c85f4aaf
commit 5bd113d44d

View file

@ -235,6 +235,10 @@ hr{
background-size: cover;
}
.mobile-grid-element{
display: none;
}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
@ -266,6 +270,10 @@ hr{
margin-bottom: -2.232vw;
}
.mobile-grid-element{
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
@ -290,6 +298,10 @@ hr{
margin-bottom: -2.232vw;
}
.mobile-grid-element{
display: none;
}
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
@ -321,6 +333,10 @@ hr{
margin-bottom: -2.232vw;
}
.mobile-grid-element{
display: none;
}
}
@media only screen and (max-width: 576px) {