Skip to content

Instantly share code, notes, and snippets.

View arunsathiya's full-sized avatar
🔥
On a quest to master competitive programming

Arun Sathiya arunsathiya

🔥
On a quest to master competitive programming
View GitHub Profile
@arunsathiya
arunsathiya / hide-blocks-certain-widths.css
Created September 28, 2021 08:30
hide-blocks-certain-widths.css
@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;
}