diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss b/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss new file mode 100644 index 0000000000..30556fb382 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss @@ -0,0 +1,8 @@ +@mixin test($italic: true) { + @if $italic { + @font-face { + } + } +} + +@include test;
\ No newline at end of file |