13 lines
432 B
JavaScript
13 lines
432 B
JavaScript
/** @format */
|
|
|
|
// 782px is the width designated by Gutenberg's `</ Popover>` component.
|
|
// * https://github.com/WordPress/gutenberg/blob/c8f8806d4465a83c1a0bc62d5c61377b56fa7214/components/popover/utils.js#L6
|
|
export function isMobileViewport() {
|
|
return window.innerWidth <= 782;
|
|
}
|
|
|
|
// Most screens at 1100px or lower are tablets
|
|
export function isTabletViewport() {
|
|
return window.innerWidth > 782 && window.innerWidth <= 1100;
|
|
}
|