Created
September 3, 2023 23:08
-
-
Save binarykore/0dbfcece30b6f477ecf8c7924849c1f3 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: 414px) and (min-width: 360px){ | |
| mobile{ | |
| //Insert Mobile Stylesheet here.. | |
| } | |
| } | |
| @media only screen and (max-width: 1280px) and (min-width: 601px){ | |
| tablet{ | |
| //Insert Tablet Stylesheet here.. | |
| } | |
| } | |
| @media only screen and (max-width: 1920px) and (min-width: 1280px){ | |
| desktop{ | |
| //Insert Desktop Stylesheet here.. | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment