bolt.new/packages/bolt/app/utils/mobile.ts

5 lines
143 B
TypeScript
Raw Normal View History

export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}