fix: 비일관적인 breakpoint 정정
- md가 아니라 lg를 기준으로 잡아야 함 - lg의 기준 breakpoint를 940으로 변경 - is100pxMode의 기준 역시 lg breakpoint와 일치
This commit is contained in:
@@ -2,7 +2,7 @@ import { useLocalStorage, useMediaQuery } from "@vueuse/core";
|
||||
import { keyScreenMode, type ScreenModeType } from "@/defs";
|
||||
import { ref, watch } from "vue";
|
||||
|
||||
export const is1000pxMode = useMediaQuery('(min-width:900px');
|
||||
export const is1000pxMode = useMediaQuery('(min-width:940px');
|
||||
export const isFullWidth = ref(true);
|
||||
export const widthMode = useLocalStorage<ScreenModeType>(keyScreenMode, "auto")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user