summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/extends.scss
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sass/resources/scss/extends.scss')
-rw-r--r--tests/sass/resources/scss/extends.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/extends.scss b/tests/sass/resources/scss/extends.scss
new file mode 100644
index 0000000000..c9e0f85381
--- /dev/null
+++ b/tests/sass/resources/scss/extends.scss
@@ -0,0 +1,13 @@
+.error {
+ border: 1px #f00;
+ background: #fdd;
+}
+.error.intrusion {
+ font-size: 1.3em;
+ font-weight: bold;
+}
+
+.badError {
+ @extend .error;
+ border-width: 3px;
+} \ No newline at end of file