Last active
September 9, 2019 14:04
-
-
Save sturmenta/30628386b9598d7b89514681bd871064 to your computer and use it in GitHub Desktop.
JS Media Queries for Desktop, Tablet, Mobile.
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
const w = window.innerWidth; | |
export const isPhone = w >= 320 && w < 480; | |
export const isTablet = w >= 480 && w < 768; | |
export const isLargeTablet = w >= 768 && w < 1024; | |
export const isDesktop = w >= 1024 && w < 1280; | |
export const isLargeDesktop = w >= 1280; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment