Skip to content

Instantly share code, notes, and snippets.

@bratsun
Created October 11, 2016 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bratsun/da70859edfb32a7a85774f4f48785e38 to your computer and use it in GitHub Desktop.
Save bratsun/da70859edfb32a7a85774f4f48785e38 to your computer and use it in GitHub Desktop.
Prefixer
@mixin prefix($property, $value, $prefixes: ()) {
@each $prefix in $prefixes {
#{'-' + $prefix + '-' + $property}: $value;
}
// Output standard non-prefixed declaration
#{$property}: $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment