mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
6 lines
207 B
JavaScript
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
|