Skip to content

Commit 3ca0935

Browse files
fix : 디테일 수정
1 parent 224c003 commit 3ca0935

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/(landing)/class/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ function CourseCard({
409409
{course.tags.map((tag) => (
410410
<span
411411
key={tag}
412-
className="rounded-full bg-gray-200 px-200 py-50 font-designer-16r text-gray-500"
412+
className="rounded-full bg-gray-50 px-200 py-50 font-designer-16r text-gray-400"
413413
>
414414
{tag}
415415
</span>
@@ -419,7 +419,7 @@ function CourseCard({
419419
{course.status === 'active' && course.price !== undefined && (
420420
<div className="mt-300 flex flex-col">
421421
{course.originalPrice !== undefined && (
422-
<p className="font-designer-16r text-gray-400 line-through">
422+
<p className="font-designer-16r text-gray-300 line-through">
423423
정가 {course.originalPrice.toLocaleString()}
424424
</p>
425425
)}
@@ -440,7 +440,7 @@ function CourseCard({
440440
<button
441441
type="button"
442442
onClick={onNotify}
443-
className="mt-300 w-full rounded-100 border border-border-brand bg-background-default py-200 font-designer-20m text-text-brand"
443+
className="w-full rounded-100 border border-border-brand bg-background-default py-200 font-designer-20m text-text-brand"
444444
>
445445
{course.ctaText}
446446
</button>

0 commit comments

Comments
 (0)