feat. 게임시작 로직 적용

This commit is contained in:
clkim
2025-10-16 17:09:07 +09:00
parent 6dff3787b6
commit 7b72319377
34 changed files with 334 additions and 282 deletions

View File

@@ -0,0 +1,19 @@
/* 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 {
transition: opacity 0.3s ease-in-out;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}