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