summaryrefslogtreecommitdiff
path: root/scss/tests/files/original-doctests/028-errors.scss
blob: 1ac223435983a26ef47c5b969ea346920251b9e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@option style:legacy, short_colors:yes, reverse_colors:yes;
.some-selector { some:prop; }
.some-selector-more { some:proop; }
.parent {
    self extends .some-selector {
        height: auto
    }
    .children {
        self extends .some-selector-more {
            height: autoo
        }
    }
}