diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss b/theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss new file mode 100644 index 0000000000..d62ead937e --- /dev/null +++ b/theme-compiler/tests/resources/automatic/scss/extend-in-nested-block.scss @@ -0,0 +1,11 @@ +.test{ + .error { + border: 1px #f00; + background-color: #fdd; + } + + .seriousError { + @extend .error; + border-width: 3px; + } +}
\ No newline at end of file |