aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SettingToggle.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-28 11:55:50 -0700
committerGitHub <noreply@github.com>2020-06-28 11:55:50 -0700
commitae73d7a5a0a3ae38c99f30b85275b3b253f0bd08 (patch)
treed90a174dfb736c442492c558c721fddfb43a82a4 /src/components/SettingToggle.vue
parent25b6367aa14a6aefa842f70dc208fdb3e11f6e06 (diff)
parentda6e676d6e42bb3e9a9feb212e152904330cff10 (diff)
downloadhomer-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/SettingToggle.vue')
-rw-r--r--src/components/SettingToggle.vue2
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>