diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/assets/themes/sui.scss | 2 | ||||
-rw-r--r-- | src/components/ConnectivityChecker.vue | 2 | ||||
-rw-r--r-- | src/components/DynamicTheme.vue | 2 | ||||
-rw-r--r-- | src/components/Navbar.vue | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/assets/themes/sui.scss b/src/assets/themes/sui.scss index f94433e..352fd78 100644 --- a/src/assets/themes/sui.scss +++ b/src/assets/themes/sui.scss | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * SUI theme | 2 | * SUI theme |
3 | * Inpired by the great https://github.com/jeroenpardon/sui start page | 3 | * Inspired by the great https://github.com/jeroenpardon/sui start page |
4 | * Author: @bastienwirtz | 4 | * Author: @bastienwirtz |
5 | */ | 5 | */ |
6 | body #app.theme-sui { | 6 | body #app.theme-sui { |
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 | > |