mirror of
https://github.com/ivabus/www
synced 2024-11-10 16:45:15 +03:00
Media Queries for hiding/showing the correct package display
This commit is contained in:
parent
1a9dbdea12
commit
f742fb6e82
|
@ -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%;
|
||||
|
|
Loading…
Reference in a new issue