fix: Toast @keyframes toast-in 애니메이션 정의 추가
Some checks failed
Client CI/CD / test (push) Failing after 45s
Client CI/CD / deploy (push) Has been skipped

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:56:50 +09:00
parent 96f5381d1c
commit e671a1cba6

View File

@@ -36,3 +36,14 @@
.toast-item.warn {
background-color: #7f5539;
}
@keyframes toast-in {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}