From f1aeb3f9c177621721853702fc60ced15a5380a1 Mon Sep 17 00:00:00 2001 From: Yeonju Jo Date: Wed, 15 May 2024 13:52:46 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=B3=80=EC=88=98=EB=AA=85?= =?UTF-8?q?=EC=9D=84=20=EA=B0=80=EB=8F=85=EC=84=B1=EC=9E=88=EA=B2=8C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../scroll-reveal-container.module.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/scroll-reveal-container/scroll-reveal-container.module.scss b/src/components/scroll-reveal-container/scroll-reveal-container.module.scss index 77b0021..2e7d293 100644 --- a/src/components/scroll-reveal-container/scroll-reveal-container.module.scss +++ b/src/components/scroll-reveal-container/scroll-reveal-container.module.scss @@ -1,4 +1,4 @@ -@keyframes animate { +@keyframes reveal { 0% { opacity: 0; transform: translate3d(0px, 50px, 0px); @@ -14,6 +14,6 @@ } .visible { - animation: 0.5s ease-in-out 0s 1 normal forwards running animate; + animation: 0.5s ease-in-out 0s 1 normal forwards running reveal; opacity: 1; }