mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
7 lines
209 B
JavaScript
7 lines
209 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;
|