mirror of
https://github.com/ivabus/www
synced 2024-11-10 10:35:22 +03:00
Mobile grid elements hidden at larger breakpoints.
This commit is contained in:
parent
62c85f4aaf
commit
5bd113d44d
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue