diff --git a/docs/components.html b/docs/components.html index 3208e2390e..2a9d158461 100644 --- a/docs/components.html +++ b/docs/components.html @@ -222,9 +222,12 @@
Nav lists provide a simple and easy way to build groups of nav links with optional headers. They're best used in sidebars like the Finder in OS X.
Structurally, they're built on the same core nav styles as tabs and pills, so usage and customization are straightforward.
+Nav lists are also easy to equip with icons. Add the proper <i>
tag with class and you're set.
Take a list of links and add class="nav list"
:
<ul class="nav list"> <li class="nav-header"> @@ -253,6 +253,34 @@ </li> ... </ul> ++
Same example, but with <i>
tags for icons.
+<ul class="nav list"> + ... + <li> + <a href="#"> + <i class="book"></i> + Library + </a> + </li> + ... +</ul>