fix: pc.css에 미디어 쿼리 추가하여 모바일 영향 방지

This commit is contained in:
caadiq 2026-01-09 18:08:48 +09:00
parent 4cbfeb5168
commit 2aff770134

View file

@ -1,5 +1,7 @@
/* PC 전용 스타일 */ /* PC 전용 스타일 */
/* PC에서만 적용 */
@media (min-width: 1024px) {
/* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */ /* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */
html { html {
overflow-y: scroll; overflow-y: scroll;
@ -9,3 +11,4 @@ html {
#root { #root {
min-width: 1440px; min-width: 1440px;
} }
}