diff options
author | Gabe Cook <gabe565@gmail.com> | 2020-06-25 17:54:18 -0500 |
---|---|---|
committer | Gabe Cook <gabe565@gmail.com> | 2020-06-25 17:56:26 -0500 |
commit | da6e676d6e42bb3e9a9feb212e152904330cff10 (patch) | |
tree | 70a36b8342fabc7806315632f051d460bfc6c910 /src/components/SettingToggle.vue | |
parent | 796a16c8da1e40aef418559ade2252a5275708c8 (diff) | |
download | homer-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/SettingToggle.vue')
-rw-r--r-- | src/components/SettingToggle.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SettingToggle.vue b/src/components/SettingToggle.vue index 864a497..ffc91a1 100644 --- a/src/components/SettingToggle.vue +++ b/src/components/SettingToggle.vue | |||
@@ -1,6 +1,6 @@ | |||
1 | <template> | 1 | <template> |
2 | <a v-on:click="toggleSetting()" class="navbar-item is-inline-block-mobile"> | 2 | <a v-on:click="toggleSetting()" class="navbar-item is-inline-block-mobile"> |
3 | <span><i :class="['fas', value ? icon : iconAlt]"></i></span> | 3 | <span><i :class="['fas', 'fa-fw', value ? icon : iconAlt]"></i></span> |
4 | <slot></slot> | 4 | <slot></slot> |
5 | </a> | 5 | </a> |
6 | </template> | 6 | </template> |