SASS mixins are great, but Autoprefixer is better for prefixes: it looks the same as writing actual CSS (just with no prefixes) and has no cognitive overhead during editing. Compare the Bourbon mixin:
@include background(linear-gradient(red, green) left repeat);
to autoprefixer:
background: linear-gradient(red, green) left repeat;