aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Navbar.vue
diff options
context:
space:
mode:
authorGabe Cook <gabe565@gmail.com>2020-06-25 17:54:18 -0500
committerGabe Cook <gabe565@gmail.com>2020-06-25 17:56:26 -0500
commitda6e676d6e42bb3e9a9feb212e152904330cff10 (patch)
tree70a36b8342fabc7806315632f051d460bfc6c910 /src/components/Navbar.vue
parent796a16c8da1e40aef418559ade2252a5275708c8 (diff)
downloadhomer-da6e676d6e42bb3e9a9feb212e152904330cff10.tar.gz
homer-da6e676d6e42bb3e9a9feb212e152904330cff10.tar.zst
homer-da6e676d6e42bb3e9a9feb212e152904330cff10.zip
:lipstick: Add fa-fw to icons by default to fix variable width icons
Fixes #93
Diffstat (limited to 'src/components/Navbar.vue')
-rw-r--r--src/components/Navbar.vue2
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>