// Box-Shadow.scss

// Depth for Content Block // ———————– // create box-shadow classes than can be added to // anything. will create classes like this, .depth-2 // by default we are creating .depth-0 to .depth-12 // but if you need to pass in a custom depth you can // use the content-shadow mixin found in /setup/_mixins.scss @for $i from 0 through 12 {

.depth-#{$i} {
  @include content-shadow($i);
}

}