From 799aee92f823a68ed16707d0703906f3ae6bc909 Mon Sep 17 00:00:00 2001 From: JeongWon-CHO Date: Sat, 28 Sep 2024 17:47:12 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EC=BD=94=EB=93=9C=20=EA=B0=80?= =?UTF-8?q?=EB=8F=85=EC=84=B1=20=ED=96=A5=EC=83=81=20-=20css=20trasform=20?= =?UTF-8?q?=ED=95=A8=EC=88=98=20=EC=A4=91=EB=B3=B5=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?-=20close=20->=20open=20=EC=9C=BC=EB=A1=9C=20=EB=B0=94=EA=BF=94?= =?UTF-8?q?=EC=84=9C=20=EC=83=81=ED=83=9C=20=EB=8B=A8=EC=B6=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Coop/components/DiningBlocks/DiningBlocks.module.scss | 5 ++--- src/pages/Coop/components/DiningBlocks/index.tsx | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/Coop/components/DiningBlocks/DiningBlocks.module.scss b/src/pages/Coop/components/DiningBlocks/DiningBlocks.module.scss index 983b023..ff7c419 100644 --- a/src/pages/Coop/components/DiningBlocks/DiningBlocks.module.scss +++ b/src/pages/Coop/components/DiningBlocks/DiningBlocks.module.scss @@ -170,10 +170,9 @@ } .arrow-icon { - transform: rotate(180deg); transition: all 0.4s ease; - &--close { - transform: rotate(0); + &--open { + transform: rotate(180deg); } } diff --git a/src/pages/Coop/components/DiningBlocks/index.tsx b/src/pages/Coop/components/DiningBlocks/index.tsx index 06ec439..46b3e3c 100644 --- a/src/pages/Coop/components/DiningBlocks/index.tsx +++ b/src/pages/Coop/components/DiningBlocks/index.tsx @@ -150,7 +150,7 @@ export default function DiningBlocks({ diningType, date }: DiningBlocksProps) {