diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/chained_mixins.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/chained_mixins.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/chained_mixins.scss b/theme-compiler/tests/resources/automatic/scss/chained_mixins.scss new file mode 100644 index 0000000000..007d611149 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/chained_mixins.scss @@ -0,0 +1,15 @@ +/* based on reindeer nativebutton */ + +@mixin foo-link($styleName : bar) { + +.#{$styleName}-link { + a: b; + } + +} + +@mixin foo($styleName : bar) { + @include foo-link($styleName); +} + +@include foo; |