Skip to content

Instantly share code, notes, and snippets.

@rmdashrfv
Created December 2, 2018 18:58
Show Gist options
  • Select an option

  • Save rmdashrfv/9710244b5d6f327c2846042be2223047 to your computer and use it in GitHub Desktop.

Select an option

Save rmdashrfv/9710244b5d6f327c2846042be2223047 to your computer and use it in GitHub Desktop.
Mobile first media queries
/* Base style */
{
}
/* Larger than mobile screen */
@media (min-width: 40.0rem) {
}
/* Larger than tablet screen */
@media (min-width: 80.0rem) {
}
/* Larger than desktop screen */
@media (min-width: 120.0rem) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment