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