Last active
January 31, 2021 05:47
-
-
Save heiswayi/726dd8be43de2114a3a9b72ab1ac9107 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
@media only screen and (max-width: 480px) { | |
/* Mobile Styles Go Here */ | |
} | |
@media only screen and (min-width: 481px) and (max-width: 768px) { | |
/* Tablet Styles Go Here */ | |
} | |
@media only screen and (min-width: 769px) { | |
/* Desktop Styles Go Here */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment