fix: consistent hover highlight styling in mobile bottom navigation menus (#2661)

This commit is contained in:
TAKAHASHI Shuuji 2024-03-08 04:14:20 +09:00 committed by GitHub
parent df165f0023
commit efa17caf5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 4 deletions

View file

@ -2,5 +2,6 @@ import { breakpointsTailwind } from '@vueuse/core'
export const breakpoints = useBreakpoints(breakpointsTailwind)
export const isSmallScreen = breakpoints.smallerOrEqual('sm')
export const isMediumOrLargeScreen = breakpoints.between('sm', 'xl')
export const isExtraLargeScreen = breakpoints.smallerOrEqual('xl')