Last active
March 25, 2023 20:24
-
-
Save rowej83/ff20bacd7616bee1618dfbbd0c0e5956 to your computer and use it in GitHub Desktop.
Visual Composer default breakpoints
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 (max-width:767px){ | |
/* Phones */ | |
} | |
@media (min-width:768px) and (max-width:991px){ | |
/* small tablets */ | |
} | |
@media (min-width:992px) and (max-width:1199px){ | |
/* large tablets and desktop */ | |
} | |
@media (min-width:1200px){ | |
/* large desktop */ | |
} | |
/* below targets ipad Pro */ | |
@media (min-width:769px) and (max-width:1199px){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this :)