1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/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 16:50:48 +02:00
const isMobileView = () => window.matchMedia('screen and (max-width: 575px)').matches
2017-08-29 16:50:48 +02:00
module.exports = isMobileView