From 2aff770134fc7821f8a0a1856e49c8c5810636cd Mon Sep 17 00:00:00 2001 From: caadiq Date: Fri, 9 Jan 2026 18:08:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20pc.css=EC=97=90=20=EB=AF=B8=EB=94=94?= =?UTF-8?q?=EC=96=B4=20=EC=BF=BC=EB=A6=AC=20=EC=B6=94=EA=B0=80=ED=95=98?= =?UTF-8?q?=EC=97=AC=20=EB=AA=A8=EB=B0=94=EC=9D=BC=20=EC=98=81=ED=96=A5=20?= =?UTF-8?q?=EB=B0=A9=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pc.css | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/frontend/src/pc.css b/frontend/src/pc.css index 7439fe5..f11f576 100644 --- a/frontend/src/pc.css +++ b/frontend/src/pc.css @@ -1,11 +1,14 @@ /* PC 전용 스타일 */ -/* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */ -html { - overflow-y: scroll; -} +/* PC에서만 적용 */ +@media (min-width: 1024px) { + /* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */ + html { + overflow-y: scroll; + } -/* PC 최소 너비 설정 */ -#root { - min-width: 1440px; + /* PC 최소 너비 설정 */ + #root { + min-width: 1440px; + } }