@use "sass:math";

$steps: 10, 20, 30, 40, 50, 60, 70, 80, 90, 100;

@mixin op-x {
  @each $step in $steps {
    .op-#{$step} {
      opacity: math.div($step, 100);
    }
  }
}

@include op-x;
