Last active
August 29, 2015 14:06
-
-
Save micahgodbolt/598095923e22eb440bf9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // 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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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