fix: disable side nav item tooltip on small screen (#1327)

This commit is contained in:
JD Hartley 2023-01-19 15:14:44 -06:00 committed by GitHub
parent 126619be92
commit 86d62fd5de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -4,3 +4,4 @@ export const breakpoints = useBreakpoints(breakpointsTailwind)
export const isSmallScreen = breakpoints.smallerOrEqual('md')
export const isMediumScreen = breakpoints.smallerOrEqual('lg')
export const isMediumOrLargeScreen = breakpoints.between('sm', 'xl')