mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
5 lines
206 B
JavaScript
5 lines
206 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 |