-
-
Save pepa-linha/43ffbce8e60d96e04c7bbe3d22923169 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.21) | |
// Compass (v1.0.3) | |
// ---- | |
%component { | |
background: red; | |
&-sub { | |
background: orange; | |
} | |
} | |
@mixin component { | |
background: red; | |
&-sub { | |
background: orange; | |
} | |
} | |
// negeneruje .Component1-sub | |
.Component1 { | |
@extend %component; | |
} | |
// generuje .Component2-sub | |
.Component2 { | |
@include component; | |
} |
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
.Component1 { | |
background: red; | |
} | |
.Component2 { | |
background: red; | |
} | |
.Component2-sub { | |
background: orange; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment