Skip to content

Commit

Permalink
Fixed Problem with mobile image views
Browse files Browse the repository at this point in the history
  • Loading branch information
sleemy1997 committed Apr 25, 2018
1 parent f7d9fb4 commit 5094d00
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions assets/less/checkbox.less
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,21 @@
0px 0 0 0 inset;
}
}
@media (max-width: 768px) {
img.carouselImgMobile {
display: block;
}
img.carouselImgDesktop {
display: none;
}
}

@media (min-width: 769px) {
img.carouselImgMobile {
display: none;
}
img.carouselImgDesktop {
display: block;
}
}
}

0 comments on commit 5094d00

Please sign in to comment.