summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/chained_mixins.scss
blob: 007d611149757221cfdfeda273ff641ae8978abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* based on reindeer nativebutton */

@mixin foo-link($styleName : bar) {

.#{$styleName}-link {
	a: b;
	}
	
}

@mixin foo($styleName : bar) {
	@include foo-link($styleName);
}

@include foo;