Skip to content

Instantly share code, notes, and snippets.

@scottkellum
Created September 10, 2013 21:28
Show Gist options
  • Save scottkellum/6515980 to your computer and use it in GitHub Desktop.
Save scottkellum/6515980 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.10)
// Compass (v0.13.alpha.4)
// ----
$media: true;
@mixin media-toggle($size, $media: $media) {
@if $media {
@media (max-width: $size) {
@content;
}
}
}
foo {
bar: baz;
@include media-toggle(767px) {
foo: bar;
}
}
foo {
bar: baz;
}
@media (max-width: 767px) {
foo {
foo: bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment