From 8f9071cca6a23e2979289ff2f85169e20a88f11d Mon Sep 17 00:00:00 2001 From: karnelll <165611407+karnelll@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:26:18 +0900 Subject: [PATCH] Update Button component styling and functionality --- fe/src/app/components/common/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/src/app/components/common/Button.tsx b/fe/src/app/components/common/Button.tsx index 2f89acd..3429476 100644 --- a/fe/src/app/components/common/Button.tsx +++ b/fe/src/app/components/common/Button.tsx @@ -15,7 +15,7 @@ function Button({ if (!disabled) { buttonStyle = type === "start" - ? "bg-darkGray text-white" + ? "bg-[#F73A2C] text-white" // 시작하기 버튼 색상 변경 : "bg-gray-500 text-grayscale-0"; }