diff --git a/app/templates/v2/screens/auswertungen.html b/app/templates/v2/screens/auswertungen.html
index bf4b9d7..cb2044f 100644
--- a/app/templates/v2/screens/auswertungen.html
+++ b/app/templates/v2/screens/auswertungen.html
@@ -13,6 +13,15 @@
margin-bottom: 1rem;
border-bottom: 2px solid var(--ecg-border);
padding-bottom: 0;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+}
+.auswert-tab {
+ white-space: nowrap;
+}
+@media (max-width: 600px) {
+ .auswert-tabs { gap: 0; }
+ .auswert-tab { padding: 6px 10px; font-size: 10px; }
}
.auswert-tab {
font-family: var(--font-mono);
@@ -971,9 +980,9 @@ async function openHeucheleiDrilldown(partei, bl) {
if (!modal) {
modal = document.createElement('div');
modal.id = 'sv-heuchelei-modal';
- modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px;';
+ modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:8px;';
modal.innerHTML = `
-
+
…
`;
} catch (e) {
document.getElementById('sv-heuchelei-modal-body').textContent = 'Fehler: ' + e;
}