Skip to content

Commit

Permalink
SKRF-476 fix: cost toLacaleString 및 신청 제출 폼 레이아웃 변경 (#234)
Browse files Browse the repository at this point in the history
* fix: cost toLocaleString 적용

* 신청 제출 폼 white-space 적용

* fix: 신청 폼 페이지 margin 수정

* fix: 신청 폼 페이지 레이아웃 재수정
  • Loading branch information
SongInjae authored Dec 2, 2023
1 parent bdad886 commit 492303a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const ClubDetail = ({ data }: ClubDetail) => {
{totalCost && (
<div>
<ContentLabel>{EVENT_DETAIL.COST}</ContentLabel>
<div>{totalCost}</div>
<div>{totalCost.toLocaleString()}</div>
</div>
)}
{location && (
Expand Down
7 changes: 6 additions & 1 deletion src/pages/event/SubmitFormPage/SubmitFormPage.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ const SubmitFormTitle = styled.p`
font-size: ${Theme.fontSize.extraTitle};
`;
const SubmitFormContent = styled.p`
font-size: 1.5rem;
font-size: 1rem;
white-space: pre-wrap;
margin: 1rem 0;
padding: 0.5rem;
border: 1px solid ${Theme.color.idkGrey};
border-radius: 0.25rem;
`;
const FormWrapper = styled.form`
display: flex;
Expand Down

0 comments on commit 492303a

Please sign in to comment.