Skip to content

Instantly share code, notes, and snippets.

@mklasen
Created January 2, 2020 21:08
Show Gist options
  • Save mklasen/33b8e911bc4077f0066b6b8ffe7d3575 to your computer and use it in GitHub Desktop.
Save mklasen/33b8e911bc4077f0066b6b8ffe7d3575 to your computer and use it in GitHub Desktop.
Media Queries SASS Mixin
@mixin for-phone-only {
@media (max-width: 599px) { @content; }
}
@mixin for-tablet-portrait-up {
@media (min-width: 600px) { @content; }
}
@mixin for-tablet-landscape-up {
@media (min-width: 900px) { @content; }
}
@mixin for-desktop-up {
@media (min-width: 1200px) { @content; }
}
@mixin for-big-desktop-up {
@media (min-width: 1800px) { @content; }
}
.article {
@include for-phone-only {
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment