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.js

17 lines
414 B
JavaScript

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;
}
window.Hydro.utils.isAbove = isAbove;
window.Hydro.utils.isBelow = isBelow;