1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00
elk/composables/screen.ts

7 lines
241 B
TypeScript
Raw Normal View History

2022-11-27 03:13:39 +00:00
import { breakpointsTailwind } from '@vueuse/core'
export const breakpoints = useBreakpoints(breakpointsTailwind)
export const isSmallScreen = breakpoints.smallerOrEqual('md')
2022-11-30 07:30:17 +00:00
export const isMediumScreen = breakpoints.smallerOrEqual('lg')