Skip to content

Instantly share code, notes, and snippets.

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 alekskravchenko/1969b0a6b968061eeabc45e28f6e3095 to your computer and use it in GitHub Desktop.
Save alekskravchenko/1969b0a6b968061eeabc45e28f6e3095 to your computer and use it in GitHub Desktop.
@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; }
}
// usage
.my-box {
padding: 10px;
@include for-desktop-up {
padding: 20px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment