Sha256: 715b5193c2b8b25f6da64c94dce8290672749923400b88be465f4e76e5f56a8f
Contents?: true
Size: 441 Bytes
Versions: 9
Compression:
Stored size: 441 Bytes
Contents
// Mixin to prefix several properties at once // EXAMPLE // @include prefix(( // appearance: none, // touch-callout: none, // user-select: none // ), webkit moz ms khtml); @mixin prefix($declarations, $prefixes: ()) { @each $property, $value in $declarations { @each $prefix in $prefixes { #{'-' + $prefix + '-' + $property}: $value; } // Output standard non-prefixed declaration #{$property}: $value; } }
Version data entries
9 entries across 9 versions & 1 rubygems