18F/18f.gsa.gov

View on GitHub
_sass/_libs/uswds/scss/utilities/rules/z-index.scss

Summary

Maintainability
Test Coverage
/*
========================================
z-index
----------------------------------------
usage:
  z-[key]
----------------------------------------
output:
  z-index: [value];
----------------------------------------
example:
  .z-100 {
    z-index: 100; }
  .z-top {
    z-index: 9999; }
----------------------------------------
*/

$u-z-index: (
  z-index: (
    base: "z",
    modifiers: null,
    values: map-collect(get-palettes($z-index-palettes), $z-index-manual-values),
    settings: $z-index-settings,
    property: "z-index",
    type: "utility"
  )
);