2022-11-27 04:13:39 +01:00
|
|
|
import { breakpointsTailwind } from '@vueuse/core'
|
|
|
|
|
|
|
|
export const breakpoints = useBreakpoints(breakpointsTailwind)
|
|
|
|
|
|
|
|
export const isSmallScreen = breakpoints.smallerOrEqual('md')
|
2022-11-30 08:30:17 +01:00
|
|
|
export const isMediumScreen = breakpoints.smallerOrEqual('lg')
|
2023-01-19 22:14:44 +01:00
|
|
|
export const isMediumOrLargeScreen = breakpoints.between('sm', 'xl')
|