Dominic Elm
feat(workbench): add file tree and hook up editor
a7d8693
raw
history blame
143 Bytes
export function isMobile() {
// we use sm: as the breakpoint for mobile. It's currently set to 640px
return globalThis.innerWidth < 640;
}