mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
7 lines
216 B
JavaScript
7 lines
216 B
JavaScript
// Checks if viewport at invoke time fits mobile dimensions
|
|
// isMobileView :: () => Bool
|
|
const isMobileView = () =>
|
|
window.matchMedia('screen and (max-width: $break-small)').matches;
|
|
|
|
export default isMobileView;
|