25 lines
358 B
Vue
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>
|