Z-index

A basic set of Z-index utility classes with module mixins for responsive modifiers.

Examples

.z-n {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-top {
  z-index: 10000;
}

Responsive mixins

Responsive modifier mixins are also provided with no pre-defined breakpoints so they can be included as modules with custom SCSS breakpoints, or alternatively enabled in the breakpoints included with the framework (see below). The following demonstrates the static and responsive names for the .z-index-1 utility.

.z-index-1
.z-index-1-xl
.z-index-1-lg
.z-index-1-md
.z-index-1-sm
.z-index-1-xs

Using the module

Add the sassmods.scss to your custom styles as below then include the Sass mixin(s) anywhere below.

custom.scss
@use "sassmods/scss/sassmods" as *;
@include z-index-css;

// Example breakpoint
@media (max-width: 480px) {
  @include z-index-sm-css;
}

Source

_z-index.scss
//  ------------------------------------------------------------
//  Z-index
//  ------------------------------------------------------------
$z-n:   -1;
$z-0:   0;
$z-1:   1;
$z-2:   2;
$z-3:   3;
$z-4:   4;
$z-top: 10000;

$z-index: (
  "z-n": $z-n,
  "z-0": $z-0,
  "z-1": $z-1,
  "z-2": $z-2,
  "z-3": $z-3,
  "z-4": $z-4,
  "z-top": $z-top,
) !default;

@mixin z-index-css { 
  @each $name, $value in $z-index {
    .#{$name} {
      z-index: #{$value};
    }
  }
}

@mixin z-index-xl-css {  
  @each $name, $value in $z-index {
    .#{$name}-xl {
      z-index: #{$value};
    }
  }
}

@mixin z-index-lg-css {  
  @each $name, $value in $z-index {
    .#{$name}-lg {
      z-index: #{$value};
    }
  }
}

@mixin z-index-md-css {  
  @each $name, $value in $z-index {
    .#{$name}-md {
      z-index: #{$value};
    }
  }
}

@mixin z-index-sm-css {  
  @each $name, $value in $z-index {
    .#{$name}-sm {
      z-index: #{$value};
    }
  }
}

@mixin z-index-xs-css {  
  @each $name, $value in $z-index {
    .#{$name}-xs {
      z-index: #{$value};
    }
  }
}