2022-11-27 03:13:39 +00:00
|
|
|
import { breakpointsTailwind } from '@vueuse/core'
|
|
|
|
|
|
|
|
export const breakpoints = useBreakpoints(breakpointsTailwind)
|
|
|
|
|
2023-01-19 21:14:44 +00:00
|
|
|
export const isMediumOrLargeScreen = breakpoints.between('sm', 'xl')
|
2023-02-03 10:40:54 +00:00
|
|
|
export const isExtraLargeScreen = breakpoints.smallerOrEqual('xl')
|