mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
6 lines
205 B
JavaScript
6 lines
205 B
JavaScript
// Checks if viewport at invoke time fits mobile dimensions
|
|
// isMobileView :: () => Bool
|
|
const isMobileView = () => window.matchMedia('screen and (max-width: 575px)').matches
|
|
|
|
export default isMobileView
|