nifty-wallet/ui/lib/is-mobile-view.js

6 lines
207 B
JavaScript
Raw Normal View History

// Checks if viewport at invoke time fits mobile dimensions
// isMobileView :: () => Bool
2017-08-29 07:50:48 -07:00
const isMobileView = () => window.matchMedia('screen and (max-width: 575px)').matches
2017-08-29 07:50:48 -07:00
module.exports = isMobileView