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.3.5) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| // A clean way to deal with z-index layers in Sass | |
| // Based on http://css-tricks.com/handling-z-index/ | |
| // --- | |
| // A map of z layers |
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
| <div class="h1">Aflsdkfjsd sdfdsflj</div> |
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.3.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin extend-component($block, $elementModifier: '') { | |
| @extend #{$block}; | |
| &#{$elementModifier} { | |
| @extend #{$block + $elementModifier}; | |
| } |