mirror of
https://github.com/ivabus/www
synced 2024-11-22 19:45:06 +03:00
Package page fix
This commit is contained in:
parent
a5cac262c5
commit
d377a9449b
1 changed files with 15 additions and 8 deletions
|
@ -4,14 +4,12 @@
|
||||||
|
|
||||||
<!-- Desktop/Tablet Package Display -->
|
<!-- Desktop/Tablet Package Display -->
|
||||||
|
|
||||||
<span>
|
<span class="grid-package-display">
|
||||||
{{- partial "package-grid.html" . -}}
|
{{- partial "package-grid.html" . -}}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<!-- Mobile Package Display -->
|
<!-- Mobile Package Display -->
|
||||||
<!-- dont remove, it is not completely useless there is a ui bug i couldnt figure out
|
|
||||||
the only solution is to keep it here. sorry - neil
|
|
||||||
-->
|
|
||||||
<span class="swiper-package-display">
|
<span class="swiper-package-display">
|
||||||
{{- partial "swiper.html" . -}}
|
{{- partial "swiper.html" . -}}
|
||||||
</span>
|
</span>
|
||||||
|
@ -19,12 +17,21 @@
|
||||||
<!-- Style for Swiper -->
|
<!-- Style for Swiper -->
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.grid-package-display{
|
.swiper-package-display{
|
||||||
display:block;
|
display:block;
|
||||||
}
|
}
|
||||||
.swiper-package-display {
|
.grid-package-display{
|
||||||
/* dont remove refer to comment above */
|
display:none;
|
||||||
display: none;
|
}
|
||||||
|
@media only screen and (min-width: 576px) {
|
||||||
|
|
||||||
|
.grid-package-display{
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-package-display{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue