Skip to content

Instantly share code, notes, and snippets.

@ntnyq
Created March 2, 2021 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ntnyq/f37ee31f1451dcd224fd9c8642846370 to your computer and use it in GitHub Desktop.
Save ntnyq/f37ee31f1451dcd224fd9c8642846370 to your computer and use it in GitHub Desktop.
ASCII-only output with sass
// https://github.com/sass/sass/issues/659#issuecomment-71759457
@mixin variable-icon-font($icon-code) {
content: #{'\"\\'}#{$icon-code + '\"'};
}
.icon {
@include variable-icon-font(e603);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment