Created
September 28, 2021 08:30
-
-
Save arunsathiya/7a72d68b2857deefc0613bd1cd08f63e to your computer and use it in GitHub Desktop.
hide-blocks-certain-widths.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (min-width: 1100px) { | |
.home .to-show-on-mobile { | |
display: none; | |
} | |
} | |
@media screen and (min-width: 782px) and (max-width: 1099px) { | |
.home .to-show-on-mobile { | |
display: none; | |
} | |
} | |
@media screen and (max-width: 781px) { | |
/* Hide desktop content on mobile views */ | |
.home .to-show-on-desktop { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment