aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/interpolation-singlequote.scss
blob: 4cdd7bf165e47c6befc47bc2ce8d4ba40c7bc1ff (plain)
1
2
3
4
5
6
7
@mixin bgcolor ($name, $color) {
    #{$name}{
        background-color: $color;  
    }
}

@include bgcolor('body', white);