summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin-content-parameters.scss
blob: dc64ddf6f86c1b8c01e53baa4e9e57501bd8b1e7 (plain)
1
2
3
4
5
6
7
8
9
@mixin test($foo) {
  #{$foo} {
    @content;
  }
}

@include test("foo") {
  lorem: ipsum;
}