Skip to content

Commit

Permalink
🐛 fix: 서류 작성 페이지 하단 등록 버튼 width 올바르게 적용 #127
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMirror21 committed Nov 25, 2024
1 parent f669796 commit 33812eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/ApplicationResult/ApplicationResultPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ const ApplicationResultPage = () => {
Contract Feedback
</h3>
<textarea
className="px-[1rem] py-[0.75rem] border border-[#E2E5EB] rounded-[0.75rem] body-2"
className="px-[1rem] py-[0.75rem] border border-[#E2E5EB] rounded-[0.75rem] body-2 focus:outline-none"
placeholder="Write a contract review"
maxLength={200}
value={feedback}
onChange={(e) => setFeedback(e.target.value)}
/>
</section>
<footer className="fixed bottom-0 left-0 pt-[0.75rem] px-[1.5rem] pb-[3.125rem] bg-white">
<footer className="fixed w-full bottom-0 left-0 pt-[0.75rem] px-[1.5rem] pb-[3.125rem] bg-white">
<Button
type={buttonTypeKeys.LARGE}
bgColor={'bg-[#FEF387]'}
Expand Down

0 comments on commit 33812eb

Please sign in to comment.