Media Queries for hiding/showing the correct package display

This commit is contained in:
Thomas Smith 2022-09-23 16:49:39 -04:00
parent 1a9dbdea12
commit f742fb6e82

View file

@ -112,6 +112,28 @@
<style>
@media only screen and (min-width: 576px) {
.grid-package-display{
display:block;
}
.swiper-package-display{
display:none;
}
}
@media only screen and (max-width: 576px) {
.grid-package-display{
display:none;
}
.swiper-package-display{
display:block;
}
}
.swiper {
width: 100%;
height: 100%;