fix: Logo-Größe einheitlich 38px auf allen Seiten
Quality Gate / 🛡️ Lint + Type Check + Tests (push) Failing after 10m55s

Vorher: Index=38px, Detail=30px, Admin=34px → Sprung je nach Ansicht
Jetzt: alle Views einheitlich 38px (height:38px;width:auto)
This commit is contained in:
Hermes Agent
2026-07-16 00:14:46 +02:00
parent ebf6e0e6fa
commit af0af785ab
2 changed files with 5497 additions and 4 deletions
+4 -4
View File
@@ -1585,7 +1585,7 @@ function toggleTheme(){{document.body.classList.toggle('light');localStorage.set
<header class="admin-header"> <header class="admin-header">
<div class="admin-header-inner"> <div class="admin-header-inner">
<div class="admin-logo-wrap"> <div class="admin-logo-wrap">
<img src="/static/logo.png" alt="Brettspiel News" style="height:34px;width:auto;"> <img src="/static/logo.png" alt="Brettspiel News" style="height:38px;width:auto;">
<span class="admin-logo-sub">boardgame.network</span> <span class="admin-logo-sub">boardgame.network</span>
</div> </div>
<div class="meta"> <div class="meta">
@@ -1679,7 +1679,7 @@ def admin_comments():
tr:hover {{background:#f8f6f0;}} tr:hover {{background:#f8f6f0;}}
.back-link {{display:inline-block;color:#20228a;text-decoration:none;font-weight:600;margin-bottom:1rem;}} .back-link {{display:inline-block;color:#20228a;text-decoration:none;font-weight:600;margin-bottom:1rem;}}
.admin-header {{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;}} .admin-header {{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;}}
.admin-header img {{height:34px;width:auto;}} .admin-header img {{height:38px;width:auto;}}
@media(max-width:700px){{table,thead,tbody,th,td,tr{{display:block;}}th{{display:none;}}tr{{margin-bottom:1rem;border:1px solid #eee;border-radius:8px;padding:0.5rem;}}td{{border:none;padding:0.2rem 0;}}}} @media(max-width:700px){{table,thead,tbody,th,td,tr{{display:block;}}th{{display:none;}}tr{{margin-bottom:1rem;border:1px solid #eee;border-radius:8px;padding:0.5rem;}}td{{border:none;padding:0.2rem 0;}}}}
</style><link rel="stylesheet" href="/static/theme.css"> </style><link rel="stylesheet" href="/static/theme.css">
</head> </head>
@@ -1735,7 +1735,7 @@ def test_page():
</style><link rel="stylesheet" href="/static/theme.css"> </style><link rel="stylesheet" href="/static/theme.css">
</head> </head>
<body> <body>
<img src="/static/logo.png" alt="Brettspiel News" style="height:34px;width:auto;margin-bottom:1.5rem;display:block;"><h1>🧪 Simulierter WhatsApp Test</h1> <img src="/static/logo.png" alt="Brettspiel News" style="height:38px;width:auto;margin-bottom:1.5rem;display:block;"><h1>🧪 Simulierter WhatsApp Test</h1>
<p>Dieser curl-Befehl sendet eine Fake-WhatsApp-Nachricht an den lokalen Webhook:</p> <p>Dieser curl-Befehl sendet eine Fake-WhatsApp-Nachricht an den lokalen Webhook:</p>
<pre>curl -X POST http://127.0.0.1:5002/whatsapp/webhook \\ <pre>curl -X POST http://127.0.0.1:5002/whatsapp/webhook \\
-H "Content-Type: application/json" \\ -H "Content-Type: application/json" \\
@@ -4689,7 +4689,7 @@ def public_detail(sub_id: int):
<header class="site-header"> <header class="site-header">
<button id="navToggle" class="nav-toggle" aria-label="Menü öffnen"></button> <button id="navToggle" class="nav-toggle" aria-label="Menü öffnen"></button>
<a href="/" class="site-logo"> <a href="/" class="site-logo">
<img src="/static/logo.png" alt="Brettspiel News" style="height:30px;width:auto;display:block;" width="160" height="30"> <img src="/static/logo.png" alt="Brettspiel News" style="height:38px;width:auto;display:block;" width="160" height="30">
<span class="site-logo-sub">boardgame.network</span> <span class="site-logo-sub">boardgame.network</span>
</a> </a>
</header> </header>
+5493
View File
File diff suppressed because one or more lines are too long