Use shadow utility classes to assist in creating a visual hierarchy.
Shadow utility classes can be defined using the format -s{size}.
0 - use to set box-shadow to none1 - use to set box-shadow to 1px2 - use to set box-shadow to 4px3 - use to set box-shadow to 6px4 - use to set box-shadow to 8px5 - use to set box-shadow to 12px<div class="-s0"></div>
<div class="-s1"></div>
<div class="-s2"></div>
<div class="-s3"></div>
<div class="-s4"></div>
<div class="-s5"></div>
Chi defines shadows with Saas maps. The following example will render
a shadow equivalent to -s1 / 1px.
@import '@centurylink/chi/src/css/variables';
.example {
box-shadow: map-get($shadow, 1);
}