Skip to content

Instantly share code, notes, and snippets.

@micahgodbolt
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save micahgodbolt/598095923e22eb440bf9 to your computer and use it in GitHub Desktop.

Select an option

Save micahgodbolt/598095923e22eb440bf9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.3)
// Compass (v1.0.1)
// ----
@mixin am($module, $trait: null) {
@if $trait {
[am-#{$module}~="#{$trait}"]{
@content;
}
}
@else {
[am-#{$module}]{
@content;
}
}
}
@include am(module) {
color: red;
}
@include am(module, blue) {
color: blue;
}
@include am(module, large blue) {
font-size: 2em;
color: blue;
}
[am-module] {
color: red;
}
[am-module~="blue"] {
color: blue;
}
[am-module~="large blue"] {
font-size: 2em;
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment