From 3cb02991231c7b49d35bd7e8543ead8548a9a572 Mon Sep 17 00:00:00 2001 From: WizardRabbit Date: Thu, 19 Oct 2023 16:01:03 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=94=BC=EB=93=9C=EC=9D=98=20=EB=84=88?= =?UTF-8?q?=EB=B9=84=EA=B0=80=20=EC=A2=81=EC=95=84=EC=A7=80=EB=A9=B4=20"?= =?UTF-8?q?=EA=B3=B5=EC=A7=80=EB=A1=9C=20=EB=93=B1=EB=A1=9D"=20=EA=B8=80?= =?UTF-8?q?=EC=94=A8=EA=B0=80=20=EB=B3=B4=EC=9D=B4=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=ED=95=98=EC=97=AC=20=EC=9D=98=EB=8F=84?= =?UTF-8?q?=EC=B9=98=20=EC=95=8A=EC=9D=80=20=ED=94=BC=EB=93=9C=20=EB=86=92?= =?UTF-8?q?=EC=9D=B4=EA=B0=80=20=EB=B3=80=ED=95=98=EB=8A=94=20=ED=98=84?= =?UTF-8?q?=EC=83=81=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts b/frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts index f806b62d1..43dc161eb 100644 --- a/frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts +++ b/frontend/src/pages/TeamFeedPage/TeamFeedPage.styled.ts @@ -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` @@ -119,4 +120,8 @@ export const noticeText = css` margin-right: 10px; color: ${({ theme }) => theme.color.GRAY800}; + + @container (width < 360px) { + display: none; + } `;