Created
September 10, 2013 21:28
-
-
Save scottkellum/6515980 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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