We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d261d4e commit 60aa238Copy full SHA for 60aa238
src/hooks/modules/useDevice.ts
@@ -10,7 +10,7 @@ import { useWindowSize } from '@vueuse/core'
10
*/
11
export function useDevice() {
12
const { width } = useWindowSize()
13
- const isDesktop = computed(() => width.value > 768)
+ const isDesktop = computed(() => width.value > 571)
14
const isMobile = computed(() => !isDesktop.value)
15
16
return { isMobile, isDesktop }
0 commit comments