mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
24 lines
455 B
Vue
24 lines
455 B
Vue
<template>
|
|
<NuxtLoadingIndicator color="#2563eb" />
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
<ModalStack />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
await updateUser();
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* You can customise the default animation here. */
|
|
|
|
::view-transition-old(root) {
|
|
animation: 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out;
|
|
}
|
|
|
|
::view-transition-new(root) {
|
|
animation: 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in;
|
|
}
|
|
</style>
|