Closed ghost closed 9 years ago
While using some sass version, the css output for icons may be something like
.icon-note.icon-left a:before, .icon-note.icon-right a:after, i.icon-note:before { content: "\\1f3b5"; height: inherit; }
But not
.icon-note.icon-left a:before, .icon-note.icon-right a:after, i.icon-note:before { content: "\1f3b5"; height: inherit; }
So that icons will display with some unexpected chars. Simply add double single quotation to solve this problem
A similar PR was already merged. Let me know if it's not already fixed. Thanks!
While using some sass version, the css output for icons may be something like
But not
So that icons will display with some unexpected chars. Simply add double single quotation to solve this problem