Test1212 / app /utils /mobile.ts
nepersonaj's picture
Upload 142 files
f8d302b verified
export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}