This is my current SASS file:
$icons-spacing: 12px;
$icons-sprite-dimensions: true;
@import "sprites/icons/*.png";
@include all-icons-sprites;
.odd .chat-marker { background-position: sprite-position($icons, chat-marker-inverted); }
Error: Undefined variable "$icons"
So what's the sprite map's variable? The map config variables at the top work fine.
I've found a solution using the generated mixins, like this:
.odd .icons-chat-marker { @include icons-sprite(chat-marker-inverted); }