Created
November 3, 2019 22:29
-
-
Save pajaydev/9712686234a0fe778059ef2413ecdf62 to your computer and use it in GitHub Desktop.
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
/* Big tablet to 1200px */ | |
@media only screen and (max-width: 1200px) { | |
} | |
/* Small tablet to big tablet: from 768px to 1023px */ | |
@media only screen and (max-width: 1023px) { | |
} | |
/* Small phones to small tablets: from 481px to 767px */ | |
@media only screen and (max-width: 767px) { | |
} | |
/* Small phones: from 0 to 480px */ | |
@media only screen and (max-width: 480px) { | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment