Sha256: 85955c7ad41fb451b427eaca6ecaf680351a741524a024a124d1ad526bdcdb37

Contents?: true

Size: 416 Bytes

Versions: 5

Compression:

Stored size: 416 Bytes

Contents

@mixin box-shadow($shadow...) {
  @if $enable-shadows {
    $result: ();

    @each $value in $shadow {
      @if $value != null {
        $result: append($result, $value, "comma");
      }
      @if $value == none and length($shadow) > 1 {
        @warn "The keyword 'none' must be used as a single argument.";
      }
    }

    @if (length($result) > 0) {
      box-shadow: $result;
    }
  }
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
nsit-jekyll-theme-0.1.0 _sass/bootstrap/scss/mixins/_box-shadow.scss
raikar11-0.1.3 _sass/bootstrap/scss/mixins/_box-shadow.scss
raikar11-0.1.2 _sass/bootstrap/scss/mixins/_box-shadow.scss
raikar11-0.1.1 _sass/bootstrap/scss/mixins/_box-shadow.scss
raikar11-0.1.0 _sass/bootstrap/scss/mixins/_box-shadow.scss