Skip to content

Commit

Permalink
Merge branch 'main' into fix-makers4-recruit-end
Browse files Browse the repository at this point in the history
  • Loading branch information
seojisoosoo authored Feb 16, 2024
2 parents c1ede78 + 1609916 commit 930061e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
9 changes: 3 additions & 6 deletions src/components/common/ContentsCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,8 @@ const Card = styled.article`
background: ${colors.gray900};
padding: 16px;
width: 100%;
max-width: 381px;
min-width: 0;
height: 116px;
@media ${MOBILE_MEDIA_QUERY} {
max-width: 100%;
}
`;

const Thumbnail = styled(ResizedImage)`
Expand Down Expand Up @@ -71,7 +67,8 @@ const Title = styled.h1`

const Contents = styled.div`
display: flex;
flex: 1 1 0;
flex-direction: column;
gap: 4px;
max-width: calc(100% - 132px);
min-width: 0;
`;
9 changes: 5 additions & 4 deletions src/components/makers/Notifier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ const RECRUITING_URL =
const Notifier: FC<NotifierProps> = ({ className }) => {
return (
<StyledJoinNotifier className={className}>
{/* <Title>makers 4기 지원이 곧 시작될 예정이에요.</Title> */}
{/* <Title>makers 4기 지원이 시작되었어요.</Title> */}
{/* MEMO: 5기 모집 시작 시 주석 해제 */}
{/* <Title>makers 5기 지원이 곧 시작될 예정이에요.</Title> */}
{/* <Title>makers 5기 지원이 시작되었어요.</Title> */}
<Title>현재 makers 4기 진행 중이에요. 5기에서 만나요!</Title>
{/* MEMO: 4기 모집 끝나면 주석 해제 */}
<SubTitle>5기 모집은 2024년 8-9월 중에 진행될 예정이에요.</SubTitle>
{/* <SubTitle>4기 모집은 2024년 1월 29일 월요일부터 2월 7일 수요일 13:00까지 진행될 예정이에요.</SubTitle> */}
{/* MEMO: 5기 모집 시작 시 주석 해제 */}
{/* <SubTitle>5기 모집은 2024년 1월 29일 월요일부터 2월 7일 수요일 13:00까지 진행될 예정이에요.</SubTitle> */}
<ButtonGroup>
{/* MEMO: 5기 모집 알림 신청시에 다시 주석 해제 */}
{/* <SubscribeButton href={RECRUIT_NOTIFY_GENERATION_URL} target='_blank'>
Expand Down
2 changes: 1 addition & 1 deletion src/components/members/detail/MemberDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ const ProjectSub = styled.div`

const ProjectDisplay = styled.div`
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(2, minmax(10px, 1fr));
row-gap: 20px;
column-gap: 29px;
margin-top: 32px;
Expand Down
2 changes: 0 additions & 2 deletions src/components/members/detail/MemberProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ const MemberProjectCard: FC<MemberProject> = ({
? `${serviceType} | ${generation}${PROJECT_CATEGORY_LABEL[category]}`
: PROJECT_CATEGORY_LABEL[category];

console.log(id);

return (
<Link href={playgroundLink.projectDetail(id)}>
<ContentsCard
Expand Down

0 comments on commit 930061e

Please sign in to comment.