frontend: Login-Redirect for unauth requests

This commit is contained in:
Frank Agerholm 2026-01-25 17:58:04 +01:00
commit c8b6e4757f
No known key found for this signature in database
4 changed files with 62 additions and 27 deletions

View file

@ -3,3 +3,16 @@
<NuxtPage />
</NuxtLayout>
</template>
<style>
.fade-enter-active,
.fade-leave-active {
transition: opacity .2s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>