How to fix font awesome icons

The font for .bullet::before is not set to FontAwesome,

You need to add the equivalent of this to your mixin:

.bullet::before {
     content: "";
     color: black; 
     font: normal normal normal 14px/1 FontAwesome;
}
5 Likes