aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/DynamicTheme.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/DynamicTheme.vue')
-rw-r--r--src/components/DynamicTheme.vue2
1 files changed, 1 insertions, 1 deletions
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 }