frontend/app.vue
SauceyRed ea44621adc
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
fix: theme link not taking baseURL into account
2025-07-03 19:54:10 +02:00

73 lines
1.1 KiB
Vue

<template>
<div>
<Banner v-if="banner" />
<NuxtPage :keepalive="true" />
</div>
</template>
<script lang="ts" setup>
const banner = useState("banner", () => false);
let currentTheme = "dark" // default theme
const savedTheme = localStorage.getItem("selectedTheme");
if (savedTheme) {
currentTheme = savedTheme;
}
const baseURL = useRuntimeConfig().app.baseURL;
useHead({
link: [
{
rel: "stylesheet",
href: `${baseURL}/themes/${currentTheme}.css`
}
]
})
</script>
<style>
html,
body {
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
color: var(--text-color);
background-color: var(--chat-background-color);
margin: 0;
}
*:focus-visible {
outline: var(--outline-border);
}
a {
color: aquamarine;
}
.white {
color: white;
}
.bottom-border {
border-bottom: 1px solid var(--padding-color);
}
.left-border {
border-left: 1px solid var(--padding-color);
}
.right-border {
border-right: 1px solid var(--padding-color);
}
.rounded-corners {
border-radius: .3rem;
}
.invisible {
visibility: hidden;
}
</style>