aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslangbroken/scss/20-test_control_flow_while.scss
blob: 8aa2616638145892007e336fa96334c9a6182f62 (plain)
1
2
3
4
5
6
7
8
9
10
.base-0  { color: green; }
.base-1  { display: block; }
.base-2  { border: 1px solid blue; }
.added {
  $i : 0;
  @while $i < 3 {
    @extend .base-#{$i};
    $i : $i + 1;
  }
}