Skip to content

Instantly share code, notes, and snippets.

@bookwyrm
Created November 3, 2015 18:38
Show Gist options
  • Save bookwyrm/f173b8c5bf5547ff2459 to your computer and use it in GitHub Desktop.
Save bookwyrm/f173b8c5bf5547ff2459 to your computer and use it in GitHub Desktop.
// scss-lint:disable TrailingSemicolon
$sprites-svg:
{{#each icons}}
{{#with this}}
${{prefix}}{{name}}-svg,
{{/with}}
{{/each}}
;
$sprites-png:
{{#each icons}}
{{#with this}}
${{prefix}}{{name}}-png,
{{/with}}
{{/each}}
;
$sprites-png-fallback:
{{#each icons}}
{{#with this}}
${{prefix}}{{name}}-png-fallback,
{{/with}}
{{/each}}
;
// scss-lint:enable TrailingSemicolon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment