summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/scoping-nested.scss
blob: e21c9c60449fed76e555a15c697353fc42943b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@option style:legacy;

$color: black;
.scoped {
    $bg: blue;
    $color: white;
    color: $color;
    background-color: $bg;
}
.unscoped {
    color: $color;
    // Would be an error
    // background: $bg;
}