Skip to content

Commit

Permalink
게스트 모집 상세 페이지 경기 소개 수정 (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwl98 authored Dec 3, 2023
1 parent 0b44d48 commit d14255c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/CrewsDetailPage/CrewsDetailPage.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const ProfileImage = styled(Image)`
export const MembersContainer = styled.div`
width: 100%;
padding-bottom: 10px;
overflow: scroll;
overflow-x: scroll;
`;

export const MemberWrapper = styled(Flex)`
Expand Down
7 changes: 6 additions & 1 deletion src/pages/GamesDetailPage/GamesDetailPage.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const InfoItem = styled.div`
export const GuestsContainer = styled.div`
width: 100%;
padding-bottom: 10px;
overflow: scroll;
overflow-x: scroll;
`;

export const Guests = styled(Flex)`
Expand Down Expand Up @@ -101,3 +101,8 @@ export const ToolTipText = styled(Text)`
border-radius: 5px;
border: 1px solid ${({ theme }) => theme.PALETTE.RED_400};
`;

export const ContentText = styled(Text)`
white-space: pre-wrap;
word-break: break-all;
`;
3 changes: 2 additions & 1 deletion src/pages/GamesDetailPage/GamesDetailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import Money from '@assets/money.svg';

import {
ButtonWrapper,
ContentText,
GrayText,
GuestName,
Guests,
Expand Down Expand Up @@ -184,7 +185,7 @@ export const GamesDetailPage = () => {
<Text size={20} weight={700}>
경기 소개
</Text>
<Text weight={300}>{match.content}</Text>
<ContentText weight={300}>{match.content}</ContentText>
<Text size={20} weight={700}>
참여한 게스트
</Text>
Expand Down

0 comments on commit d14255c

Please sign in to comment.