From 52670ec9a8c54cb1353fed0f8b6e06085ea9d2f1 Mon Sep 17 00:00:00 2001 From: Yun-Jinwoo Date: Tue, 29 Apr 2025 12:02:49 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=EB=AA=A8=EB=B0=94?= =?UTF-8?q?=EC=9D=BC=EC=97=90=EC=84=9C=20=EB=B2=84=ED=8A=BC=EC=9D=B4=20act?= =?UTF-8?q?ive=EC=83=81=ED=83=9C=EC=9D=BC=EB=95=8C=EB=A7=8C=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Card/Card.module.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/Card/Card.module.scss b/src/components/Card/Card.module.scss index fffad74..67c6f9a 100644 --- a/src/components/Card/Card.module.scss +++ b/src/components/Card/Card.module.scss @@ -102,6 +102,15 @@ } } } + @media (max-width: 1023px) { + &:active { + background-color: $error; + border-color: $gray-400; + &:hover img { + animation: shake 0.5s ease-in-out; + } + } + } } } }