chore: scaffold sveltekit cloudflare app

This commit is contained in:
2026-06-05 23:25:18 +01:00
commit 6c3cef4da2
23 changed files with 21014 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { MediaQuery } from "svelte/reactivity";
const DEFAULT_MOBILE_BREAKPOINT = 768;
export class IsMobile extends MediaQuery {
constructor(breakpoint: number = DEFAULT_MOBILE_BREAKPOINT) {
super(`max-width: ${breakpoint - 1}px`);
}
}