diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-08-28 23:35:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 23:35:08 -0700 |
commit | 607fb898f882a6086904b0b530215425fbcf5f41 (patch) | |
tree | 921627b1208decaead6237248f06580310e82057 /src/components | |
parent | 2e7eb41f8ca65c15f638b0238fed18290a60cfa7 (diff) | |
parent | 68c36d6c54cc0946313db73729a998456570ba62 (diff) | |
download | homer-607fb898f882a6086904b0b530215425fbcf5f41.tar.gz homer-607fb898f882a6086904b0b530215425fbcf5f41.tar.zst homer-607fb898f882a6086904b0b530215425fbcf5f41.zip |
Merge pull request #115 from gabe565/navbar-alignment
Fix alignment when navbar link name is empty
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Navbar.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index c688a3a..ae84166 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue | |||
@@ -28,8 +28,7 @@ | |||
28 | > | 28 | > |
29 | <i | 29 | <i |
30 | v-if="link.icon" | 30 | v-if="link.icon" |
31 | style="margin-right: 6px;" | 31 | :class="['fa-fw', link.icon, { 'mr-2': link.name }]" |
32 | :class="['fa-fw', link.icon]" | ||
33 | ></i> | 32 | ></i> |
34 | {{ link.name }} | 33 | {{ link.name }} |
35 | </a> | 34 | </a> |