Update theme style import fallback in App.vue

This commit is contained in:
Yohany Flores Suarez 2026-02-01 10:23:51 -05:00 committed by jamesread
parent e0da041b67
commit e2be4a03c1
1 changed files with 1 additions and 1 deletions

View File

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