dev / app /utils /mobile.ts
Charan5775's picture
Add application file
8f7821c
raw
history blame contribute delete
143 Bytes
export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}