Skip to content

Instantly share code, notes, and snippets.

@wernah
Created June 3, 2013 08:56
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 wernah/5696974 to your computer and use it in GitHub Desktop.
Save wernah/5696974 to your computer and use it in GitHub Desktop.
Responsive Mixins
@mixin respond-to($media) {
@if $media == small-mode {
@media only screen and (max-width: 420px) { @content }
}
@else if $media == medium-mode {
@media only screen and (max-width: 769px) { @content }
}
@else if $media == large-mode {
@media only screen and (max-width: 980px) { @content }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment