summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/at-directive-in-if.scss
blob: 30556fb3820315b5b9357ca149db7b2cd233670f (plain)
1
2
3
4
5
6
7
8
@mixin test($italic: true) {
    @if $italic {
      @font-face {
      }
    }
}

@include test;