embroidery-viewer/src/lib/utils/isMobile.js

9 lines
198 B
JavaScript

import { browser } from '$app/environment';
export const isMobile = () => {
if (browser) {
return window.matchMedia('only screen and (max-width: 768px)').matches;
} else {
return null;
}
};