aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ConnectivityChecker.vue2
-rw-r--r--src/components/DynamicTheme.vue2
-rw-r--r--src/components/Navbar.vue4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ConnectivityChecker.vue b/src/components/ConnectivityChecker.vue
index d5f8f80..d41c443 100644
--- a/src/components/ConnectivityChecker.vue
+++ b/src/components/ConnectivityChecker.vue
@@ -2,7 +2,7 @@
2 <div v-if="offline" class="offline-message"> 2 <div v-if="offline" class="offline-message">
3 <i class="far fa-dizzy"></i> 3 <i class="far fa-dizzy"></i>
4 <h1> 4 <h1>
5 You're offline bro. 5 You're offline friend.
6 <span @click="checkOffline"> <i class="fas fa-redo-alt"></i></span> 6 <span @click="checkOffline"> <i class="fas fa-redo-alt"></i></span>
7 </h1> 7 </h1>
8 </div> 8 </div>
diff --git a/src/components/DynamicTheme.vue b/src/components/DynamicTheme.vue
index fc2fd55..2d37fcb 100644
--- a/src/components/DynamicTheme.vue
+++ b/src/components/DynamicTheme.vue
@@ -25,7 +25,7 @@ export default {
25 for (const themeVars in theme) { 25 for (const themeVars in theme) {
26 let value = `${theme[themeVars]}`; 26 let value = `${theme[themeVars]}`;
27 if (!value) { 27 if (!value) {
28 value = "inital"; 28 value = "initial";
29 } else if (themeVars == "background-image") { 29 } else if (themeVars == "background-image") {
30 value = `url(${theme[themeVars]})`; 30 value = `url(${theme[themeVars]})`;
31 } 31 }
diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue
index dea7049..705077c 100644
--- a/src/components/Navbar.vue
+++ b/src/components/Navbar.vue
@@ -21,8 +21,8 @@
21 <a 21 <a
22 class="navbar-item" 22 class="navbar-item"
23 rel="noreferrer" 23 rel="noreferrer"
24 v-for="link in links" 24 v-for="(link, key) in links"
25 :key="link.url" 25 :key="key"
26 :href="link.url" 26 :href="link.url"
27 :target="link.target" 27 :target="link.target"
28 > 28 >