Skip to content

Instantly share code, notes, and snippets.

@nagelflorian
Last active April 26, 2020 12:32
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 nagelflorian/8dd704a4778ad8020d13 to your computer and use it in GitHub Desktop.
Save nagelflorian/8dd704a4778ad8020d13 to your computer and use it in GitHub Desktop.
Mobile First Sass Media Query Mixin
=media-query($min, $max: "")
@if ($max == "")
@media (min-width: $min)
@content
@else
@media (min-width: $min) and (max-width: ($max - 1px))
@content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment