Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
T1ckbase
/
bolt.diy
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4919627
bolt.diy
/
packages
/
bolt
/
app
/
utils
/
mobile.ts
Dominic Elm
feat(workbench): add file tree and hook up editor
a7d8693
about 1 year 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
;
}