Skip to content

Instantly share code, notes, and snippets.

@pccai
Created April 27, 2015 11:51
Show Gist options
  • Save pccai/c354fa7382a2ed8d791e to your computer and use it in GitHub Desktop.
Save pccai/c354fa7382a2ed8d791e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
@mixin iphone {
@media only screen and (max-width: 480px) {
@content;
}
}
@include iphone {
body { color: red }
}
@media only screen and (max-width: 480px) {
body {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment