fix: cockpit header — grille 5 colonnes compacte au lieu d'empilement vertical

This commit is contained in:
2026-03-20 16:07:08 +01:00
parent 9065b1c593
commit ed0f7b614a

View File

@@ -124,19 +124,17 @@
// --- Header cockpit (stats résumé) --- // --- Header cockpit (stats résumé) ---
.gp-cockpit-header { .gp-cockpit-header {
display: flex; display: grid;
justify-content: space-between; grid-template-columns: repeat(5, 1fr);
align-items: center; gap: 0.2rem;
flex-wrap: wrap; padding: 0.5rem;
gap: 0.3rem;
} }
.gp-stat { .gp-stat {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
gap: 0.1rem; gap: 0.05rem;
min-width: 3.5rem;
} }
// --- Progress bar --- // --- Progress bar ---