Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_box-shadow.scss « mixins « scss - github.com/uicardiodev/hugo-sodium-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2410e53ac3e59c5b0907c1ac079e4c7bc683f86 (plain)
1
2
3
4
5
@mixin box-shadow($shadow...) {
  @if $enable-shadows {
    box-shadow: $shadow;
  }
}