You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/utils/mediaQuery.ts

16 lines
395 B
TypeScript

export function isAbove(width) {
if (window.matchMedia) {
return window.matchMedia(`(min-width: ${width}px)`).matches;
}
return window.innerWidth >= width;
}
export function isBelow(width) {
if (window.matchMedia) {
return window.matchMedia(`(max-width: ${width}px)`).matches;
}
return window.innerWidth <= width;
}
Object.assign(window.Hydro.utils, { isAbove, isBelow });