Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created June 10, 2015 18:58
Show Gist options
  • Save MichaelArestad/266ffe19ea4db90606eb to your computer and use it in GitHub Desktop.
Save MichaelArestad/266ffe19ea4db90606eb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$media-queries: true;
@mixin breakpoint( $size ){
@if ( $media-queries == true ) {
@media ( $size ){
@content
}
}
}
.test {
@include breakpoint( 'max-width: 480px' ) {
color: red;
}
}
@media (max-width: 480px) {
.test {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment