mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
22 lines
347 B
Vue
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>
|