UI-Verbesserungen, PWA-Icons, Branding und Settings-Erweiterung

Invertiertes Logo für Admin-Navbar, neue PWA-Icons, Manifest-Updates,
Tailwind-Config-Extraktion, Farb-/Namenseinstellungen im Admin-Bereich
und diverse Layout-Optimierungen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Rhino
2026-03-02 23:49:12 +01:00
parent 4eaf2368af
commit ee89141628
30 changed files with 401 additions and 27 deletions

View File

@@ -1,9 +1,9 @@
// ============================================================
// Service Worker SG Wölfe Handball WebApp
// Service Worker VereinsOS
// Strategie: Lokale Assets cachen, HTML Network-First
// ============================================================
const CACHE_NAME = 'handball-v3';
const CACHE_NAME = 'vereinos-v1';
const OFFLINE_URL = '/offline';
// Lokale Assets, die beim Install gecached werden
@@ -14,7 +14,7 @@ const PRECACHE_ASSETS = [
'/images/icon-192x192.png',
'/images/icon-512x512.png',
'/manifest.json',
'/images/logo_woelfe.png'
'/images/vereinos_logo.png'
];
// ---- INSTALL ----