Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
blanchon
/
LeRobot-Arena
like
4
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
115756a
LeRobot-Arena
/
src
/
lib
/
hooks
/
is-mobile.svelte.ts
blanchon
Update UI
ca4340e
4 months ago
raw
Copy download link
history
blame
Safe
196 Bytes
import
{
MediaQuery
}
from
"svelte/reactivity"
;
const
MOBILE_BREAKPOINT
=
768
;
export
class
IsMobile
extends
MediaQuery
{
constructor
(
) {
super
(
`max-width:
${MOBILE_BREAKPOINT -
1
}
px`
);
}
}