2023-06-01 22:06:11 +02:00
|
|
|
<template>
|
2023-06-25 17:48:22 +02:00
|
|
|
<div class="w-full overflow-y-auto bg-gray-900">
|
2023-06-04 22:47:48 +02:00
|
|
|
<NuxtLayout />
|
2023-06-13 16:29:47 +02:00
|
|
|
|
|
|
|
<UNotifications />
|
2023-06-01 22:06:11 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
2023-06-24 13:27:33 +02:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.router-link-active {
|
|
|
|
background: rgba(0, 0, 0, 10%)
|
|
|
|
}
|
2023-06-24 13:47:40 +02:00
|
|
|
|
|
|
|
.page-enter-active,
|
|
|
|
.page-leave-active {
|
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
|
|
|
.page-enter-from,
|
|
|
|
.page-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
filter: blur(0.2rem);
|
|
|
|
}
|
|
|
|
|
2023-06-24 13:27:33 +02:00
|
|
|
</style>
|