summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin_variables.scss
blob: 28cde661ddf29e3bb261505bc236612cc27151be (plain)
1
2
3
4
5
6
7
8
9
10
@mixin color($color : red, $tag : bar) {
	.#{$tag} {
		color: $color;
	}
}
$color : green;
@include color($color: purple, $tag : foo);
@include color($tag : baz);
@include color($color: $color, $tag : foobar);
@include color($tag : foobaz);