Sha256: 8f7a027ed1935293ae727e89976a4ad813975ccba0f5049e87abb9cda18d146c
Contents?: true
Size: 398 Bytes
Versions: 2
Compression:
Stored size: 398 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
2 entries across 1 versions & 1 rubygems