diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss/mixin-extra-params.scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/mixin-extra-params.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/mixin-extra-params.scss b/theme-compiler/tests/resources/scss/mixin-extra-params.scss new file mode 100644 index 0000000000..af376adf90 --- /dev/null +++ b/theme-compiler/tests/resources/scss/mixin-extra-params.scss @@ -0,0 +1,4 @@ +@mixin test ($p1) { + color: $p1; +} +@include test(foo, bar);
\ No newline at end of file |