A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
305 B

  1. /*
  2. Partial to contain all globally-applicable mixins
  3. */
  4. // add vendor prefixes for the property $property with value $value
  5. @mixin vendor($property, $value)
  6. -webkit-#{$property}: $value
  7. -moz-#{$property}: $value
  8. -ms-#{$property}: $value
  9. -o-#{$property}: $value
  10. #{$property}: $value