diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-06-28 11:55:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 11:55:50 -0700 |
commit | ae73d7a5a0a3ae38c99f30b85275b3b253f0bd08 (patch) | |
tree | d90a174dfb736c442492c558c721fddfb43a82a4 /src/components/Navbar.vue | |
parent | 25b6367aa14a6aefa842f70dc208fdb3e11f6e06 (diff) | |
parent | da6e676d6e42bb3e9a9feb212e152904330cff10 (diff) | |
download | homer-ae73d7a5a0a3ae38c99f30b85275b3b253f0bd08.tar.gz homer-ae73d7a5a0a3ae38c99f30b85275b3b253f0bd08.tar.zst homer-ae73d7a5a0a3ae38c99f30b85275b3b253f0bd08.zip |
Merge pull request #97 from gabe565/fa-fw
Add fa-fw to icons by default to fix variable width icons
Diffstat (limited to 'src/components/Navbar.vue')
-rw-r--r-- | src/components/Navbar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index d3ceaf8..c688a3a 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue | |||
@@ -29,7 +29,7 @@ | |||
29 | <i | 29 | <i |
30 | v-if="link.icon" | 30 | v-if="link.icon" |
31 | style="margin-right: 6px;" | 31 | style="margin-right: 6px;" |
32 | :class="link.icon" | 32 | :class="['fa-fw', link.icon]" |
33 | ></i> | 33 | ></i> |
34 | {{ link.name }} | 34 | {{ link.name }} |
35 | </a> | 35 | </a> |