meal_planner/app.vue
2024-12-15 01:18:09 +01:00

22 lines
347 B
Vue

<template>
<div data-theme="cupcake" class="flex flex-col h-screen">
<AppNavbar />
<main class="flex-grow">
<NuxtPage />
</main>
<AppFooter />
</div>
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>