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

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

View file

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