diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/extending-non-exist-selector-with-same-beginning.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/extending-non-exist-selector-with-same-beginning.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/extending-non-exist-selector-with-same-beginning.scss b/theme-compiler/tests/resources/automatic/scss/extending-non-exist-selector-with-same-beginning.scss new file mode 100644 index 0000000000..538f17da1d --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/extending-non-exist-selector-with-same-beginning.scss @@ -0,0 +1,8 @@ +.test1 { + color: blue; +} + +.test2 { + @extend .test; + background: red; +}
\ No newline at end of file |