Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Heuehneje/bolt.diy
kloudux
/
kodex
like
1
Running
App
Files
Files
Community
main
kodex
/
app
/
utils
/
mobile.ts
Heuehneje
bolt.diy
baa4c21
verified
over 1 year ago
raw
Copy download link
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
;
}