_opacity.scss 151 B

1234567
  1. // stylelint-disable declaration-no-important
  2. @for $i from 0 through 20 {
  3. .opacity-#{$i * 5} {
  4. opacity: calc(#{$i * 5} / 100) !important;
  5. }
  6. }