From e2be4a03c1a4b15a7ce7f97a6bb75c4a69ac24fe Mon Sep 17 00:00:00 2001 From: Yohany Flores Suarez Date: Sun, 1 Feb 2026 10:23:51 -0500 Subject: [PATCH] Update theme style import fallback in App.vue --- frontend/resources/vue/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/resources/vue/App.vue b/frontend/resources/vue/App.vue index 063890d..8c61c1a 100644 --- a/frontend/resources/vue/App.vue +++ b/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);' } }