Created
August 14, 2014 15:20
-
-
Save davidpett/d54174e9ff1d798dc13d 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.0.rc.3) | |
| // Compass (v1.0.0.rc.1) | |
| // ---- | |
| .btn { | |
| background: #ff0000; | |
| &--small { | |
| font-size: 1em; | |
| } | |
| &--large { | |
| font-size: 1.5em; | |
| } | |
| } | |
| /* | |
| shouldn't this render: | |
| .btn, | |
| .btn--small, | |
| .btn--large { | |
| background: #ff0000; | |
| } | |
| .btn--small { | |
| font-size: 1em; | |
| } | |
| .btn--large { | |
| font-size: 1.5em; | |
| } | |
| */ |
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
| .btn { | |
| background: #ff0000; | |
| } | |
| .btn--small { | |
| font-size: 1em; | |
| } | |
| .btn--large { | |
| font-size: 1.5em; | |
| } | |
| /* | |
| shouldn't this render: | |
| .btn, | |
| .btn--small, | |
| .btn--large { | |
| background: #ff0000; | |
| } | |
| .btn--small { | |
| font-size: 1em; | |
| } | |
| .btn--large { | |
| font-size: 1.5em; | |
| } | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment