Skip to content

Instantly share code, notes, and snippets.

@crazyrohila
Created December 7, 2015 09:59
Show Gist options
  • Save crazyrohila/acaea00e662704277501 to your computer and use it in GitHub Desktop.
Save crazyrohila/acaea00e662704277501 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin placeholder($extend: true) {
@if($extend) {
@extend %placeholder;
}
@else {
color: red;
}
}
%placeholder {
color: red;
}
.test {
@include placeholder(true);
@media (max-width: 600px) {
@include placeholder(false);
}
}
.test {
color: red;
}
@media (max-width: 600px) {
.test {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment