From a8c61ac03c720925b61c2a070a774eacbbefee07 Mon Sep 17 00:00:00 2001 From: chaeseungyun Date: Wed, 5 Jun 2024 16:23:15 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20className=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/page/Auth/components/Common/index.module.scss | 2 +- src/page/Auth/components/Common/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/page/Auth/components/Common/index.module.scss b/src/page/Auth/components/Common/index.module.scss index e35cc61c..2e0ee9ab 100644 --- a/src/page/Auth/components/Common/index.module.scss +++ b/src/page/Auth/components/Common/index.module.scss @@ -78,7 +78,7 @@ border-radius: 4px; font-weight: 600; - &__active { + &--active { width: 100%; background-color: #175C8E; height: 50px; diff --git a/src/page/Auth/components/Common/index.tsx b/src/page/Auth/components/Common/index.tsx index 9ddd522f..074825af 100644 --- a/src/page/Auth/components/Common/index.tsx +++ b/src/page/Auth/components/Common/index.tsx @@ -95,7 +95,7 @@ export default function CommonLayout() { disabled={!isStepComplete} className={ cn({ - [styles.button__active]: isStepComplete || isComplete, + [styles['button--active']]: isStepComplete || isComplete, [styles.button]: true, }) }