Sha256: d120feba23c6f35ecc5cdf7a33ea658493edd8feaed1b7ca1b3425fdd2f98c93

Contents?: true

Size: 545 Bytes

Versions: 21

Compression:

Stored size: 545 Bytes

Contents

// z_index variables
$z_1: 100;
$z_2: 200;
$z_3: 300;
$z_4: 400;
$z_5: 500;
$z_6: 600;
$z_7: 700;
$z_8: 800;
$z_9: 900;
$z_10: 1000;
$z_index: (
  zindex_1: $z_1,
  zindex_2: $z_1,
  zindex_3: $z_1,
  zindex_4: $z_1,
  zindex_5: $z_1,
  zindex_6: $z_1,
  zindex_7: $z_1,
  zindex_8: $z_1,
  zindex_9: $z_1,
);

$z_layers: (
  "header": $z_10,
  "default": 0
);

@function z_index_for($layer) {
  @if not map-has-key($z_layers, $layer) {
    @error "No layer found for `#{$layer}` in $z_layers map.";
  }

  @return map-get($z_layers, $layer);
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
playbook_ui-2.8.1 app/pb_kits/playbook/tokens/_positioning.scss