feat: 前端样式调整

This commit is contained in:
tbphp
2025-07-04 22:46:35 +08:00
parent c1b9e9d247
commit 3f9439b11f
10 changed files with 81 additions and 82 deletions

View File

@@ -24,22 +24,6 @@ const isLoggedIn = computed(() => !!authKey.value);
<style>
#app-root {
width: 100%;
/* height: 100vh; */
overflow: hidden;
}
.app-transition-enter-active,
.app-transition-leave-active {
transition: all 0.4s ease;
}
.app-transition-enter-from {
opacity: 0;
transform: translateY(20px);
}
.app-transition-leave-to {
opacity: 0;
transform: translateY(-20px);
}
</style>