Z-Index.scss 92 B

123456
  1. // Z-index
  2. @each $s, $l in 0, 10, 20, 30, 40, 50, auto {
  3. .z-#{$s} {
  4. z-index: #{$s};
  5. }
  6. }