Bot auto-update: src/__pycache__/web_dashboard.cpython-310.pyc,src/web_dashboard.py

This commit is contained in:
Marc Blatter 2026-07-04 13:16:49 +02:00
parent 51bf3df227
commit f444946631
2 changed files with 13 additions and 2 deletions

View File

@ -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;
}
</style>
@media (max-width: 1200px) {
.metrics-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.metrics-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">