Skip to content

Commit

Permalink
달력/리스트 반응형 수정 및 탈퇴하기삭제 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
minjoon97 authored Nov 7, 2024
1 parent 07b1876 commit 265b9ac
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/features/calendar/calendar-ui/calendarUiCss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ export const StyledCalendar = styled(Calendar).attrs({
background-color: rgba(0, 0, 0, 0.05);
cursor: pointer;
}
@media (max-width: 550px) {
border: none !important;
height: 50px;
}
}
//10년박스
Expand Down Expand Up @@ -166,4 +171,8 @@ export const DateInnerContent = styled.div<DateInnerContentProps>`
background-size: contain;
background-repeat: no-repeat;
align-self: flex-end;
@media (max-width: 550px) {
display: none;
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export const Time = styled.div`

export const Reaction = styled.div`
width: 80%;
@media (max-width: 960px) {
display: none;
}
`;

export const Emotion = styled.div<{ imgPath: string | null }>`
Expand Down
1 change: 0 additions & 1 deletion src/widgets/Mypage/Mypage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ const Mypage = () => {
</Button>
</ButtonStyled>
<Margin bottom={28} />
<Span isCenter>탈퇴하기</Span>
</MypageStyled>
);
};
Expand Down

0 comments on commit 265b9ac

Please sign in to comment.