@@ -48,17 +48,17 @@ const MentorCard = ({ mentor, observeRef, isMine = false }: MentorCardProps) =>
4848 < div className = "flex items-start gap-3" >
4949 < div className = "flex flex-col items-center" >
5050 < ProfileWithBadge profileImageUrl = { profileImageUrl } hasBadge = { hasBadge } />
51- < span className = "typo-sb-11 text-primary-1" > 누적 멘티 { menteeCount } 명</ span >
51+ < span className = "text-primary-1 typo-sb-11 " > 누적 멘티 { menteeCount } 명</ span >
5252 </ div >
5353
5454 < div className = "flex flex-1 flex-col items-stretch gap-3" >
5555 < div className = "mb-1 flex items-center justify-between" >
56- < span className = "typo-sb-7 text-primary-1" > { country } </ span >
56+ < span className = "text-primary-1 typo-sb-7 " > { country } </ span >
5757 { isDetail && < StudyDate term = { term ! } /> }
5858 </ div >
59- < h3 className = "typo-bold-2 text-k-800" > { nickname } 님</ h3 >
59+ < h3 className = "text-k-800 typo-bold-2 " > { nickname } 님</ h3 >
6060 < div className = "mt-1 flex flex-col" >
61- < p className = "typo-medium-2 text-k-500" > { universityName } </ p >
61+ < p className = "text-k-500 typo-medium-2 " > { universityName } </ p >
6262 </ div >
6363 </ div >
6464 </ div >
@@ -68,13 +68,13 @@ const MentorCard = ({ mentor, observeRef, isMine = false }: MentorCardProps) =>
6868 < >
6969 { /* 멘토 한마디 */ }
7070 < div className = "mb-4 mt-5" >
71- < h4 className = "mb-2 typo-medium-5 text-blue-600" > 멘토 한마디</ h4 >
72- < p className = "typo-regular-2 text-k-500" > { introduction } </ p >
71+ < h4 className = "mb-2 text-blue-600 typo-medium-5 " > 멘토 한마디</ h4 >
72+ < p className = "text-k-500 typo-regular-2 " > { introduction } </ p >
7373 </ div >
7474
7575 { /* 멘토 채널 */ }
7676 < div className = "mb-4" >
77- < h4 className = "mb-2 typo-medium-5 text-blue-600" > 멘토 채널</ h4 >
77+ < h4 className = "mb-2 text-blue-600 typo-medium-5 " > 멘토 채널</ h4 >
7878 < div
7979 className = { clsx ( "grid gap-2" , {
8080 "grid-cols-1" : channels ?. length === 1 ,
@@ -100,21 +100,21 @@ const MentorCard = ({ mentor, observeRef, isMine = false }: MentorCardProps) =>
100100 { isMine ? (
101101 < Link
102102 href = "/mentor/modify"
103- className = "flex h-10 w-[150px] flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 typo-medium-2 text-white "
103+ className = "flex h-10 w-[150px] flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 text-white typo-medium-2"
104104 >
105105 수정하기
106106 </ Link >
107107 ) : (
108108 < >
109109 < Link
110110 href = { `/mentor/${ id } ` }
111- className = "flex h-10 w-1/2 flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 typo-medium-2 text-white "
111+ className = "flex h-10 w-1/2 flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 text-white typo-medium-2"
112112 >
113113 멘토 페이지
114114 </ Link >
115115 < button
116116 onClick = { ( ) => id && handlePostApplyMentor ( id ) }
117- className = "flex h-10 w-1/2 flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 typo-medium-2 text-white "
117+ className = "flex h-10 w-1/2 flex-shrink-0 items-center justify-center gap-3 rounded-[20px] bg-primary px-5 py-2.5 text-white typo-medium-2"
118118 >
119119 멘티 신청하기
120120 </ button >
0 commit comments