cb095126ef
Fixed bottom nav with Home/Spiele/Rangliste/Profil tabs. Desktop keeps header nav. Admin hidden behind gear icon. Main content padded to avoid overlap with bottom nav. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
303 B
TypeScript
18 lines
303 B
TypeScript
interface Window {
|
|
_devUser?: number;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_TEST_MODE?: string;
|
|
readonly DEV: boolean;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare module '*.module.css' {
|
|
const classes: { readonly [key: string]: string };
|
|
export default classes;
|
|
}
|