@mixin flex {
  @for $i from 0 through 12 {
    .flex-#{$i} {
      flex: #{$i} !important;
    }
  }
}

@include flex;
