Skip to content

Instantly share code, notes, and snippets.

@kylemocode
Created April 14, 2020 09:06
Show Gist options
  • Save kylemocode/af8424d53847aaf8f3ea0ab4e297e79b to your computer and use it in GitHub Desktop.
Save kylemocode/af8424d53847aaf8f3ea0ab4e297e79b to your computer and use it in GitHub Desktop.
export const size = {
mobileS: '320px',
mobileM: '375px',
mobileL: '425px',
mobileXL: '450px',
tablet: '768px',
}
export const device = {
mobileS: `(max-width: ${size.mobileS})`,
mobileM: `(max-width: ${size.mobileM})`,
mobileL: `(max-width: ${size.mobileL})`,
mobileXL: `(max-width: ${size.mobileXL})`,
tablet: `(max-width: ${size.tablet})`,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment