Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80529 views
$z-indices: map-get($theme, zIndices);

@function z-index($name, $offset: 0) {
  @return map-get($z-indices, $name) + $offset;
}

@mixin z-index($args...) {
  z-index: z-index($args...);
}