@mixin width-generator {
  @for $value from 0 through 20 {
    $width: percentage($value * 5) / 100;
    .fr-w-#{$value*5} {
      width: $width;
    }
  }
}
@include width-generator;
