bolt.diy / app /utils /mobile.ts
Heuehneje's picture
bolt.diy
baa4c21 verified
raw
history blame contribute delete
147 Bytes
export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}