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