diff options
Diffstat (limited to 'theme-compiler/tests/resources/sasslang/scss/212-update_stylesheet.scss')
-rw-r--r-- | theme-compiler/tests/resources/sasslang/scss/212-update_stylesheet.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/sasslang/scss/212-update_stylesheet.scss b/theme-compiler/tests/resources/sasslang/scss/212-update_stylesheet.scss new file mode 100644 index 0000000000..f64d80bd19 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/scss/212-update_stylesheet.scss @@ -0,0 +1,11 @@ +$preconst: hello; + +@mixin premixin {pre-mixin: here} + +@import "importee.sass", "scss_importee", "basic.sass", "basic.css", "../results/complex.css"; +@import "partial.sass"; + +nonimported { + myconst: $preconst; + otherconst: $postconst; + @include postmixin; } |