Sha256: 09682ffaee9cff4a9178df6d5e86a7554975f519e40ddf90d368b05d863e55c0
Contents?: true
Size: 494 Bytes
Versions: 5
Compression:
Stored size: 494 Bytes
Contents
//================================================================== // BOX-SHADOW MIXIN //================================================================== @mixin box-shadow( $x: 0.25rem, $y: 0.25rem, $blur: 0.5rem, $spread: 0.5rem, $color: var(--dark), $opacity: 1, $inset: false ) { -webkit-box-shadow: $x $y $blur $spread rgba($color, $opacity); -moz-box-shadow: $x $y $blur $spread rgba($color, $opacity); box-shadow: $x $y $blur $spread rgba($color, $opacity); }
Version data entries
5 entries across 5 versions & 1 rubygems