Skip to content

Instantly share code, notes, and snippets.

@jetrodn
Created November 3, 2017 14:00
Show Gist options
  • Save jetrodn/ceac4ffe7273803195af31307e561147 to your computer and use it in GitHub Desktop.
Save jetrodn/ceac4ffe7273803195af31307e561147 to your computer and use it in GitHub Desktop.
mixin for css breakpoints
@mixin for-size($size) {
@if $size == phone-only {
@media (max-width: 599px) { @content; }
} @else if $size == tablet-portrait-up {
@media (min-width: 600px) { @content; }
} @else if $size == tablet-landscape-up {
@media (min-width: 900px) { @content; }
} @else if $size == desktop-up {
@media (min-width: 1200px) { @content; }
} @else if $size == big-desktop-up {
@media (min-width: 1800px) { @content; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment