fix: pc.css에 미디어 쿼리 추가하여 모바일 영향 방지
This commit is contained in:
parent
4cbfeb5168
commit
2aff770134
1 changed files with 10 additions and 7 deletions
|
|
@ -1,11 +1,14 @@
|
||||||
/* PC 전용 스타일 */
|
/* PC 전용 스타일 */
|
||||||
|
|
||||||
/* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */
|
/* PC에서만 적용 */
|
||||||
html {
|
@media (min-width: 1024px) {
|
||||||
overflow-y: scroll;
|
/* PC 항상 스크롤바 공간 확보 - 화면 밀림 방지 */
|
||||||
}
|
html {
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
/* PC 최소 너비 설정 */
|
/* PC 최소 너비 설정 */
|
||||||
#root {
|
#root {
|
||||||
min-width: 1440px;
|
min-width: 1440px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue