Use fixed-width icons in the navbar - in most places it doesn't matter how wide the icons are but they get stacked vertically in the navbar on narrow screens

This commit is contained in:
Danielle McLean 2017-12-04 22:06:39 +11:00
parent 342ca6ac76
commit 9e71c3d35d
Signed by: 00dani
GPG Key ID: 5A5D2D1AFF12EEC5
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{% load activeurl %}{% activeurl %}<ul class="navbar-nav">
{% for item in items %}
<li class="nav-item"><a class="nav-link" href="{{ item.url }}">
<i class="{{ item.icon }}"></i>
<i class="{{ item.icon }} fa-fw"></i>
{{ item.label }}
</a></li>
{% endfor %}