chore: 换用更美观、现代的前端页面 (#348)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-06-01 13:42:10 +08:00
committed by GitHub
parent a574d005c3
commit c07e475fe6
127 changed files with 3886 additions and 1041 deletions

View File

@@ -0,0 +1,9 @@
import { MediaQuery } from 'svelte/reactivity';
const MOBILE_BREAKPOINT = 768;
export class IsMobile extends MediaQuery {
constructor() {
super(`max-width: ${MOBILE_BREAKPOINT - 1}px`);
}
}