summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin-content-directive-with-vars.scss
blob: e7e0c3b7e6ee15e094ff481ac240efeecdacdf89 (plain)
1
2
3
4
5
6
7
8
9
$color: white;
@mixin colors($color: blue) {
  background-color: $color;
  @content;
  border-color: $color;
}
.colors {
  @include colors { color: $color; }
}