-
-
Save mihir1337/5fb5c7d274003a51f93e5dcc9e2d92d6 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
| /* XL Device :1200px. */ | |
| @media (min-width: 1200px) and (max-width: 1500px) { | |
| } | |
| /* LG Device :992px. */ | |
| @media (min-width: 992px) and (max-width: 1200px) { | |
| } | |
| /* MD Device :768px. */ | |
| @media (min-width: 768px) and (max-width: 991px) { | |
| } | |
| /* Extra small Device. */ | |
| @media (max-width: 767px) { | |
| } | |
| /* SM Small Device :550px. */ | |
| @media only screen and (min-width: 576px) and (max-width: 767px) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment