Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
aproli90/bolt.diy
bitsnaps
/
bolt.diy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
bolt.diy
/
app
/
utils
/
mobile.ts
aproli90
Upload 289 files
2e1ab99
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
export
function
isMobile
(
) {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return
globalThis.
innerWidth
<
640
;
}