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

6 lines
207 B
JavaScript

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