Skip to content

Commit

Permalink
fix: 라벨 위치 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
ocahs9 committed Aug 9, 2024
1 parent 44eaefe commit d982add
Showing 1 changed file with 30 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,39 +53,41 @@ const RegisteredCard = ({
const dueDate = calculateDueDate(performancePeriod);

return (
<S.CardWrapper>
<>
<Labal dueDate={dueDate} />
<S.CardImg
imgsrc={posterImage ?? ""}
onClick={() => {
navigate(`/gig/${performanceId}`);
}}
/>
<S.CardInfo>
<S.CardInfoTextBox
<S.CardWrapper>
<S.CardImg
imgsrc={posterImage ?? ""}
onClick={() => {
navigate(`/gig/${performanceId}`);
}}
>
<S.CardInfoTextTitleBox>
<S.CardInfoGenreText>{getShowTypeText(genre as SHOW_TYPE_KEY)}</S.CardInfoGenreText>
<S.CardInfoTitleText>{performanceTitle}</S.CardInfoTitleText>
</S.CardInfoTextTitleBox>
/>
<S.CardInfo>
<S.CardInfoTextBox
onClick={() => {
navigate(`/gig/${performanceId}`);
}}
>
<S.CardInfoTextTitleBox>
<S.CardInfoGenreText>{getShowTypeText(genre as SHOW_TYPE_KEY)}</S.CardInfoGenreText>
<S.CardInfoTitleText>{performanceTitle}</S.CardInfoTitleText>
</S.CardInfoTextTitleBox>

<S.CardInfoPeriodBox>{performancePeriod}</S.CardInfoPeriodBox>
</S.CardInfoTextBox>
<S.CardInfoButtonBoxWrapper>
<S.CardInfoButtonBox>
<Button onClick={handleModifiyBtn} size="xsmall" variant="gray" disabled={false}>
공연정보 수정
</Button>
<Button onClick={handleGuestListBtn} size="xsmall" variant="line" disabled={false}>
예매자 관리
</Button>
</S.CardInfoButtonBox>
</S.CardInfoButtonBoxWrapper>
</S.CardInfo>
</S.CardWrapper>
<S.CardInfoPeriodBox>{performancePeriod}</S.CardInfoPeriodBox>
</S.CardInfoTextBox>
<S.CardInfoButtonBoxWrapper>
<S.CardInfoButtonBox>
<Button onClick={handleModifiyBtn} size="xsmall" variant="gray" disabled={false}>
공연정보 수정
</Button>
<Button onClick={handleGuestListBtn} size="xsmall" variant="line" disabled={false}>
예매자 관리
</Button>
</S.CardInfoButtonBox>
</S.CardInfoButtonBoxWrapper>
</S.CardInfo>
</S.CardWrapper>
</>
);
};

Expand Down

0 comments on commit d982add

Please sign in to comment.