From f4449466313dee0641425a0d1f8abaa97b28feb1 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Sat, 4 Jul 2026 13:16:49 +0200 Subject: [PATCH] Bot auto-update: src/__pycache__/web_dashboard.cpython-310.pyc,src/web_dashboard.py --- src/__pycache__/web_dashboard.cpython-310.pyc | Bin 18499 -> 18718 bytes src/web_dashboard.py | 15 +++++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/__pycache__/web_dashboard.cpython-310.pyc b/src/__pycache__/web_dashboard.cpython-310.pyc index 2a3021e8da8e5107964bbd1627b944069088f284..3c88d97c273aa5d1941bf66d383a1b47b3f0d69e 100644 GIT binary patch delta 241 zcmX>+fpOj>M!tMrUM>b8nEl!#OVDp4UyvZv9@EW9f}2^`Omq|s(~345ifM7#aVY?S zLvCtHW}<>dZeoRQd1gvUhLwV$k%2)$g{DF^SOG|pUT$hhQD$3RHaZdr`Ge sBd~Fr)^L@zU>1bLVzjxL1yLr;O9EYq-PFy|3J=xUl{gqh7+L-S07Ke6>;M1& delta 61 zcmbO?iSh6RM!tMrUM>b8kbCWsW#+q)FG!H-p~>bX!Obj_y`=;hjV8xRNp02^lj7QJ Qrua~uU7UkagpuVR01JN*LjV8( diff --git a/src/web_dashboard.py b/src/web_dashboard.py index 7ec4782..c4dcf03 100644 --- a/src/web_dashboard.py +++ b/src/web_dashboard.py @@ -258,7 +258,7 @@ html_content = """ .metrics-grid { display: grid; - grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; } @@ -387,7 +387,18 @@ html_content = """ padding-top: 20px; border-top: 1px solid #2a2a2a; } - + + @media (max-width: 1200px) { + .metrics-grid { + grid-template-columns: repeat(2, 1fr); + } + } + @media (max-width: 768px) { + .metrics-grid { + grid-template-columns: 1fr; + } + } +