From e671a1cba6341d648087e7cca67a1d8df6786bd7 Mon Sep 17 00:00:00 2001 From: tolelom <98kimsungmin@naver.com> Date: Sun, 15 Mar 2026 18:56:50 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Toast=20@keyframes=20toast-in=20?= =?UTF-8?q?=EC=95=A0=EB=8B=88=EB=A9=94=EC=9D=B4=EC=85=98=20=EC=A0=95?= =?UTF-8?q?=EC=9D=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/toast/Toast.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/components/toast/Toast.css b/src/components/toast/Toast.css index 7bc9509..70762a3 100644 --- a/src/components/toast/Toast.css +++ b/src/components/toast/Toast.css @@ -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); + } +}