Skip to content

Instantly share code, notes, and snippets.

@irasantiago
Created January 8, 2015 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irasantiago/ae0671982a0eca4b22e3 to your computer and use it in GitHub Desktop.
Save irasantiago/ae0671982a0eca4b22e3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
@mixin icons($icon:'') {
[class^="icon__#{$icon}"], [class*="icon__#{$icon}"] {
@content;
}
}
@include icons {
color: red;
}
@include icons(arrow){
color: blue;
}
[class^="icon__"], [class*="icon__"] {
color: red;
}
[class^="icon__arrow"], [class*="icon__arrow"] {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment