ui 수정 및 시현할 기능 업데이트

This commit is contained in:
leeheejin
2025-10-02 14:34:15 +09:00
parent 2c0dca08b4
commit 3fa410cbe4
168 changed files with 1545 additions and 1066 deletions

View File

@@ -35,7 +35,7 @@ export const StepProgress: React.FC<StepProgressProps> = ({
? "bg-green-500 text-white"
: step.id === currentStep
? "bg-orange-500 text-white"
: "bg-gray-200 text-gray-600"
: "bg-gray-200 text-muted-foreground"
}`}
>
{step.id < currentStep ? (
@@ -52,7 +52,7 @@ export const StepProgress: React.FC<StepProgressProps> = ({
{step.title}
</h3>
<p className={`text-xs ${
step.id <= currentStep ? "text-gray-600" : "text-gray-400"
step.id <= currentStep ? "text-muted-foreground" : "text-gray-400"
}`}>
{step.description}
</p>