Merge branch 'main' into GUI-polish
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
ci/woodpecker/pull_request_closed/build-and-publish Pipeline was successful

This commit is contained in:
JustTemmie 2025-07-03 19:17:45 +02:00
commit edaf1aa726
Signed by: justtemmie
SSH key fingerprint: SHA256:nBO+OwpTkd8LYhe38PIqdxmDvkIg9Vw2EbrRZM97dkU

10
app.vue
View file

@ -1,6 +1,5 @@
<template>
<div>
<link :href="'/themes/' + currentTheme + '.css'" rel="stylesheet" type="text/css"></link>
<Banner v-if="banner" />
<NuxtPage :keepalive="true" />
</div>
@ -15,6 +14,15 @@ const savedTheme = localStorage.getItem("selectedTheme");
if (savedTheme) {
currentTheme = savedTheme;
}
useHead({
link: [
{
rel: "stylesheet",
href: `/themes/${currentTheme}.css`
}
]
})
</script>
<style>