Add page transition, new fonts, latex support for blog

This commit is contained in:
2025-08-30 17:49:29 +07:00
parent 21e1c49239
commit d95d7310d4
2 changed files with 30 additions and 1 deletions
+12
View File
@@ -3,3 +3,15 @@
<NuxtPage/>
</NuxtLayout>
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.2s cubic-bezier(var(--ease-fluid));
}
.page-enter-from,
.page-leave-to {
opacity: 0;
translate: transformY(10px);
}
</style>