@mixin spriteWidth($sprite) {
width: nth($sprite,5);
}
@mixin spriteHeight($sprite) {
height: nth($sprite,6);
}
@mixin spritePosition($sprite) {
background-position: nth($sprite,3) nth($sprite,4);
}
@mixin sprite($sprite) {
@include spritePosition($sprite);
@include spriteWidth($sprite);
@include spriteHeight($sprite);
}
цифры 5,6,3,4 это так сказать ключи к файлу sass.template.mustache, он у меня выглядит так
{{#items}}
${{name}}: {{px.x}} {{px.y}} {{px.offset_x}} {{px.offset_y}} {{px.width}} {{px.height}} {{px.total_width}} {{px.total_height}} '{{{escaped_image}}}';
{{/items}}
например ключи 3 и 4 это вот этот участок {{px.offset_x}} {{px.offset_y}}