From 25c8b07b5c3ce020e53c78f73a98c35883fe6d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EB=8F=84=ED=98=84?= <77152650+Creative-Lee@users.noreply.github.com> Date: Fri, 20 Oct 2023 13:58:53 +0900 Subject: [PATCH] =?UTF-8?q?design:=20=EB=93=A3=EA=B8=B0=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EA=B0=80=EC=9A=B4=EB=8D=B0=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC=20(#541)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/features/songs/components/SongDetailItem.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/features/songs/components/SongDetailItem.tsx b/frontend/src/features/songs/components/SongDetailItem.tsx index ce9e0f24..7700c2ff 100644 --- a/frontend/src/features/songs/components/SongDetailItem.tsx +++ b/frontend/src/features/songs/components/SongDetailItem.tsx @@ -95,10 +95,11 @@ const Container = styled.div` justify-content: center; height: 100vh; - padding-top: ${({ theme: { headerHeight } }) => headerHeight.desktop}; + padding-top: 0; @media (max-width: ${({ theme }) => theme.breakPoints.sm}) { justify-content: flex-start; + padding-top: ${({ theme: { headerHeight } }) => headerHeight.tablet}; } @media (max-width: ${({ theme }) => theme.breakPoints.xs}) {