Polarcraft/webv2/app.vue
2023-06-24 13:47:40 +02:00

25 lines
358 B
Vue

<template>
<div class="min-h-screen w-full overflow-y-auto bg-gray-900">
<NuxtLayout />
<UNotifications />
</div>
</template>
<style>
.router-link-active {
background: rgba(0, 0, 0, 10%)
}
.page-enter-active,
.page-leave-active {
transition: all 0.2s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(0.2rem);
}
</style>