Skip to content

Instantly share code, notes, and snippets.

@sturmenta
Last active September 9, 2019 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturmenta/30628386b9598d7b89514681bd871064 to your computer and use it in GitHub Desktop.
Save sturmenta/30628386b9598d7b89514681bd871064 to your computer and use it in GitHub Desktop.
JS Media Queries for Desktop, Tablet, Mobile.
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