Skip to content

Commit

Permalink
fix: 피드의 너비가 좁아지면 "공지로 등록" 글씨가 보이지 않도록 하여 의도치 않은 피드 높이가 변하는 현상 해결 (#817)
Browse files Browse the repository at this point in the history
  • Loading branch information
wzrabbit authored Oct 19, 2023
1 parent 14e37ed commit 4ddc5a3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const Container = styled.div<{
background-color: ${({ theme }) => theme.color.GRAY100};
z-index: 0;
container-type: inline-size;
`;

export const Inner = styled.div`
Expand Down Expand Up @@ -119,4 +120,8 @@ export const noticeText = css`
margin-right: 10px;
color: ${({ theme }) => theme.color.GRAY800};
@container (width < 360px) {
display: none;
}
`;

0 comments on commit 4ddc5a3

Please sign in to comment.