Przeglądaj źródła

Update theme style import fallback in App.vue

Yohany Flores Suarez 5 miesięcy temu
rodzic
commit
e2be4a03c1
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      frontend/resources/vue/App.vue

+ 1 - 1
frontend/resources/vue/App.vue

@@ -364,7 +364,7 @@ function applyTheme() {
     if (themePreference.value && themePreference.value !== '') {
         themeStyle.textContent = `@import url('/custom-webui/themes/${themePreference.value}/theme.css') layer(theme);`
     } else {
-        themeStyle.textContent = ''
+        themeStyle.textContent = '@import url('/theme.css') layer(theme);'
     }
 }