Skip to content

Commit

Permalink
Merge pull request #84 from DEPthes/kaeun
Browse files Browse the repository at this point in the history
Design: 편지 폰트 변경
  • Loading branch information
rlotr02 authored Mar 5, 2024
2 parents 3d503a7 + 8dbc7c7 commit 58480b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/pages/response/response-Writing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const ResponseWriting: React.FC<SendProps> = ({ componentChangeHandler, newtitle
<form className='w-334 tablet:w-900 desktop:w-[1280px]'>
<p className='text-primary text-center font-heading--lg desktop:font-heading--xl'>편지 작성</p>
<input
className='flex items-center self-stretch w-full mt-24 p-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover font-letter--title desktop:font-letter--title-desktop'
className='flex items-center self-stretch w-full mt-24 p-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover font-label--md desktop:font-label--md'
type='text'
placeholder='편지 제목을 입력하세요.'
minLength={1}
Expand All @@ -184,7 +184,7 @@ const ResponseWriting: React.FC<SendProps> = ({ componentChangeHandler, newtitle
onChange={onInputHandler}
/>
<AutoResizableTextarea
className='flex items-start self-stretch w-full min-h-440 mt-24 py-8 px-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover resize-none font-letter--content desktop:font-letter--content-desktop'
className='flex items-start self-stretch w-full min-h-440 mt-24 p-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover resize-none font-label--md desktop:font-label--md'
placeholder='편지 내용을 입력하세요.'
minLength={1}
maxLength={MAX_LENGTH}
Expand Down
2 changes: 1 addition & 1 deletion components/pages/send/send-Writing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const SendWriting: React.FC<SendProps> = ({ componentChangeHandler, newtitle, ne
onChange={onInputHandler}
/>
<AutoResizableTextarea
className='flex items-start self-stretch w-full min-h-440 mt-24 py-8 px-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover resize-none font-label--md desktop:font-label--md'
className='flex items-start self-stretch w-full min-h-440 mt-24 p-12 border-primary/30 rounded-8 border-2 outline-none bg-tertiary placeholder-text_secondary text-hover resize-none font-label--md desktop:font-label--md'
placeholder='편지 내용을 입력하세요.'
minLength={1}
maxLength={MAX_LENGTH}
Expand Down
4 changes: 2 additions & 2 deletions pages/letter/[id]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export default function Letters() {
) : (
<main className='flex justify-center px-24 py-40 tablet:px-32 tablet:py-56 desktop:px-64 desktop:py-64'>
<div className='w-334 tablet:w-900 desktop:w-[1280px]'>
<div className='flex items-center self-stretch w-full p-12 rounded-10 outline-none bg-letter_bg text-hover font-letter--title desktop:font-letter--title-desktop'>
<div className='flex items-center self-stretch w-full p-12 rounded-10 outline-none bg-letter_bg text-hover font-label--md desktop:font-label--md'>
{letter?.title}
</div>
<div className='flex items-start self-stretch w-full min-h-440 mt-16 py-8 px-12 rounded-10 outline-none bg-letter_bg text-hover resize-none font-letter--content desktop:font-letter--content-desktop'>
<div className='flex items-start self-stretch w-full min-h-440 mt-16 p-12 rounded-10 outline-none bg-letter_bg text-hover resize-none font-label--md desktop:font-label--md'>
{letter?.contents}
</div>
<div className='float-right font-label--sm mt-8 text-primary'>
Expand Down

0 comments on commit 58480b9

Please sign in to comment.