Looking to customize the default breadcrumb
style using SASS. Following the guidelines from Bootstrap 4 beta 3 documentation, I made changes in the custom.scss
:
$breadcrumb-divider: "\f105"; //using FontAwesome icon for fa-angle-right
However, setting font family is also required:
font-family: 'fontAwesome'; //How can this be implemented?
What's the correct way to configure the font for the .breadcrumb-item::before
class?