aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/assets/themes/sui.scss2
-rw-r--r--src/components/DynamicTheme.vue2
2 files changed, 2 insertions, 2 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 */
6body #app.theme-sui { 6body #app.theme-sui {
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 }