breadcrumb
<nav class="breadcrumb">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="further-page.html">Further Page</a></li>
</ul>
</nav>
The breadcrumb can be customized using the following options:
| Property Name | Default Value | Description |
|---|---|---|
font-size |
0.9em |
The breadcrumb font size. |
divider-icon |
"\f105" |
The code for any FontAwesome icon to act as the crumb separator. |
icon-color |
base('text-color') |
The color of the divider icon. |
To change one of the above values, pass your new value(s) to the breadcrumb() mixin in your theme file (e.g. assets/themes/Kayzen/_kayzen.scss).
@include breadcrumb((
'divider-icon' : "\f138",
'icon-color' : rgba(black, 0.25)
));