Created
December 4, 2015 17:39
-
-
Save kpennell/230f93f3a4f8ba582027 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.14) | |
// Compass (v1.0.3) | |
// ---- | |
$primary-color: #295e7c; | |
@mixin debug { | |
background-color: pink; | |
border: 1px solid black; | |
} | |
.partA { | |
@include debug; | |
color: $primary-color; | |
} | |
.partB { | |
@extend .partA; | |
padding: 1em; | |
} |
This file contains 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
.partA, .partB { | |
background-color: pink; | |
border: 1px solid black; | |
color: #295e7c; | |
} | |
.partB { | |
padding: 1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment