fix. 하이드레이션 에러 수정

This commit is contained in:
clkim
2025-11-13 17:18:44 +09:00
parent 56a2334055
commit 0d9b5dd7ad
8 changed files with 35 additions and 68 deletions

View File

@@ -1,13 +1,3 @@
/* page-fade */
.page-fade-enter-active,
.page-fade-leave-active {
transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.page-fade-enter-from,
.page-fade-leave-to {
opacity: 0;
}
/* fade */
.fade-enter-active,
.fade-leave-active {
@@ -18,6 +8,23 @@
opacity: 0;
}
/* fade-out */
.fade-out-enter-active,
.fade-out-enter-from,
.fade-out-enter-to {
transition: none;
opacity: 1;
}
.fade-out-leave-active {
transition: opacity 0.3s ease-out;
}
.fade-out-leave-from {
opacity: 1;
}
.fade-out-leave-to {
opacity: 0;
}
.slide-up-enter-active,
.slide-up-leave-active {
transition: