File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ export default function RankingItem({
5555 </ div >
5656
5757 < button className = "absolute right-6 flex items-center whitespace-nowrap bg-transparent p-0" >
58- < p > 함께 { parentCategoryId === CELEBRATION_ID ? '축하' : '위로' } 하기</ p >
58+ < p className = "text-grey-10" >
59+ 함께 { parentCategoryId === CELEBRATION_ID ? '축하' : '위로' } 하기
60+ </ p >
5961 < Arrow className = "ml-4" />
6062 </ button >
6163 </ div >
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ function FeedbackMail() {
1111
1212 const formRef = useRef < HTMLFormElement > ( null )
1313
14+ const handleChangeSubjectInput = ( e : React . ChangeEvent < HTMLInputElement > ) => {
15+ if ( subject . length > 20 ) return
16+ setSubject ( e . target . value )
17+ }
1418 const sendEmail = ( e : React . FormEvent < HTMLFormElement > ) => {
1519 e . preventDefault ( )
1620 if ( subject === '' || body === '' ) return
@@ -99,7 +103,7 @@ function FeedbackMail() {
99103 type = "text"
100104 className = "w-full border-b border-solid border-grey-4 py-1.5 text-grey-9 outline-none placeholder:text-grey-4 focus:placeholder:text-transparent"
101105 placeholder = "제목을 작성해주세요."
102- onChange = { ( e ) => setSubject ( e . target . value ) }
106+ onChange = { ( e ) => handleChangeSubjectInput ( e ) }
103107 value = { subject }
104108 maxLength = { 20 }
105109 />
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ function TeamIntroduction() {
2727 'https://itrecord.notion.site/itrecord/b55dba4e491144d5b62efd0bdbe15b36'
2828 )
2929 }
30- className = "mt-8 flex w-full cursor-pointer items-center justify-between bg-transparent p-0 text-base font-semibold "
30+ className = "mt-8 flex w-full cursor-pointer items-center justify-between bg-transparent p-0"
3131 >
32- < p >
32+ < p className = "text-base font-semibold" >
3333 더 자세한 팀 < span className = "text-primary-2" > 텐져스의 이야기</ span > { ' ' }
3434 보러가기
3535 </ p >
You can’t perform that action at this time.
0 commit comments