Skip to content

Instantly share code, notes, and snippets.

@morav
Forked from imevro/mixin.scss
Created March 5, 2014 11:14
Show Gist options
  • Save morav/9365330 to your computer and use it in GitHub Desktop.
Save morav/9365330 to your computer and use it in GitHub Desktop.
@mixin responsive($media) {
@if $media == sm {
@media (min-width: 768px) { @content; }
}
@else if $media == md {
@media (min-width: 992px) { @content; }
}
@else if $media == lg {
@media (min-width: 1200px) { @content; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment