From 279a372052ab16e9a8fd8a7b77adf417a48578df Mon Sep 17 00:00:00 2001 From: HeesungB Date: Mon, 19 Dec 2022 00:00:47 +0900 Subject: [PATCH] Hide logo when window size width under 1280px --- components/logo/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/logo/index.tsx b/components/logo/index.tsx index dbca3be..9d22f2a 100644 --- a/components/logo/index.tsx +++ b/components/logo/index.tsx @@ -36,4 +36,8 @@ export const LogoContainer = styled.div` margin-top: 5rem; margin-left: 5rem; + + @media screen and (max-width: 1280px) { + display: none; + } `;