Skip to content

Commit

Permalink
fix: 수정 버튼 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
jinjoo-jung committed Jan 27, 2024
1 parent d4bd880 commit 8fd294d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/components/CouponList/CouponItem/CouponWait/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const CouponWait = ({ couponInfo }: CouponListProps) => {
</DateContainer>
<CouponModifiedWrap>
<UpdateButton onClick={handleUpdateClick}>수정</UpdateButton>
<img
<CenterImg
src={centerIcon}
alt="분리 선 이미지"
/>
Expand Down Expand Up @@ -373,12 +373,12 @@ const CouponModifiedWrap = styled.div`
width: 56px;
margin-right: 14px;
margin-right: -5px;
margin-bottom: 14px;
display: flex;
align-items: center;
justify-content: space-between;
justify-content: space-around;
color: #757676;
font-size: 11px;
Expand All @@ -389,9 +389,14 @@ const CouponModifiedWrap = styled.div`
`;

const UpdateButton = styled.div`
display: none;
cursor: pointer;
`;

const CenterImg = styled.img`
display: none;
`;

const DeleteButton = styled.div`
cursor: pointer;
`;
Expand Down

0 comments on commit 8fd294d

Please sign in to comment.