Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

게스트 모집 상세 페이지 경기 소개 수정 #481

Merged
merged 1 commit into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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