bolt.diy / app /utils /mobile.ts
aproli90's picture
Upload 289 files
2e1ab99 verified
raw
history blame
143 Bytes
export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}