blob: 8a8591c1ae6c38c7e8a9c2a5f19f4be62728e9a5 (
plain) (
blame)
1
2
3
4
5
|
// Checks if viewport at invoke time fits mobile dimensions
// isMobileView :: () => Bool
const isMobileView = () => window.matchMedia("screen and (max-width: 575px)").matches
module.exports = isMobileView
|