summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/if_in_mixin.scss
blob: 397145d893760026f1d47ca0d2469047180f13d8 (plain)
1
2
3
4
5
6
7
8
9
@mixin foo {
  @if (1 == 1) {
    .inif {
      bar: baz;
    }
  }
}

@include foo;