Created
April 6, 2014 09:19
-
-
Save impressivewebs/10003500 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.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| %example { | |
| color: blue; | |
| font-weight: bold; | |
| font-size: 2em; | |
| } | |
| @media (max-width: 800px) { | |
| .generic-class { | |
| @extend %example; | |
| } | |
| } |
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
| You may not @extend an outer selector from within @media. | |
| You may only @extend selectors within the same directive. | |
| From "@extend %example" on line 9. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment