diff --git a/src/__pycache__/web_dashboard.cpython-310.pyc b/src/__pycache__/web_dashboard.cpython-310.pyc index 3c88d97..ab1d4e6 100644 Binary files a/src/__pycache__/web_dashboard.cpython-310.pyc and b/src/__pycache__/web_dashboard.cpython-310.pyc differ diff --git a/src/web_dashboard.py b/src/web_dashboard.py index c4dcf03..e755b88 100644 --- a/src/web_dashboard.py +++ b/src/web_dashboard.py @@ -256,9 +256,7 @@ html_content = """ font-weight: 600; } - .metrics-grid { - display: grid; - grid-template-columns: repeat(4, 1fr); + .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; } @@ -389,13 +387,11 @@ html_content = """ } @media (max-width: 1200px) { - .metrics-grid { - grid-template-columns: repeat(2, 1fr); + .metrics-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 768px) { - .metrics-grid { - grid-template-columns: 1fr; + .metrics-grid { grid-template-columns: repeat(4, 1fr); } }