Skip to content

Instantly share code, notes, and snippets.

@soska
Last active August 29, 2015 14:04
Show Gist options
  • Save soska/7943119df0170cb14c09 to your computer and use it in GitHub Desktop.
Save soska/7943119df0170cb14c09 to your computer and use it in GitHub Desktop.
Useful respond-to mixin for foundation sass.
// to be used with foundation's responsive variables.
// e.g. @include respond-to($medium-up){…}
@mixin respond-to($media) {
@media #{$media}{ @content; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment