Polarcraft/webv2/app.vue
Xeovalyte bbd329a4cf
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 1s
feat: Added Map page
2023-06-25 17:48:22 +02:00

25 lines
345 B
Vue

<template>
<div class="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>