Hello I'm trying to do Ember.js TodoMVC tutorial with Brunch.io Coffeescript and sass-brunch@1.8.1(it uses libsass)
When I run it check
, destroy
symbols don't show up. Check all
symbol shows as question mark.
And the scss
file has this:
#todo-list li .toggle:after {
content: '✔';
...
}
#toggle-all:before {
content: '»';
...
}
#todo-list li .destroy:after {
content: '✖';
}
How do I fix this problem?