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