-
-
Save Zodiase/e5de4809769e73d9482d6c411cdeed96 to your computer and use it in GitHub Desktop.
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
.some-mixin ( | |
@titleFont: '', | |
@bodyStyle: {}, | |
) { | |
& > .title { | |
font: @titleFont; | |
} | |
& > .body { | |
@bodyStyle(); | |
} | |
} | |
.some-component { | |
.some-mixin( | |
@titleFont: bold 1.5em Helvetica, | |
@bodyStyle: { | |
color: gray; | |
}, | |
); | |
} |
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
.some-component > .title { | |
font: bold 1.5em Helvetica; | |
} | |
.some-component > .body { | |
color: gray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment