From d4006460cdd2a4ffe375319eb03c9f954af82838 Mon Sep 17 00:00:00 2001 From: Enrico Piovesan Date: Mon, 17 Aug 2026 13:19:43 -0600 Subject: [PATCH] fix: remove Approved specs / Workspace crates / Coverage-gated stats These three hardcoded tiles in the audit-stats grid weren't computed from the findings data like the four severity tiles beside them, and had drifted from the current instrumented crate count (52 specs / 6 crates / 3-of-6 gated no longer describes the codebase generation after generation without anyone remembering to hand-update this row). Grid drops from 7 to 4 columns to match. Co-Authored-By: Claude Sonnet 5 --- src/pages/security-audit.astro | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/pages/security-audit.astro b/src/pages/security-audit.astro index 4468a93..79bedca 100644 --- a/src/pages/security-audit.astro +++ b/src/pages/security-audit.astro @@ -127,7 +127,7 @@ const jsonLd = JSON.stringify({ .audit-stats { display: grid; - grid-template-columns: repeat(7, 1fr); + grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); @@ -135,7 +135,6 @@ const jsonLd = JSON.stringify({ overflow: hidden; margin: 2.5rem 0; } - @media (max-width: 900px) { .audit-stats { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 560px) { .audit-stats { grid-template-columns: repeat(2, 1fr); } } .audit-stat { background: var(--bg-card); padding: 1.25rem 1rem; text-align: center; } .audit-stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--fg); line-height: 1; margin-bottom: 0.4rem; } @@ -231,9 +230,6 @@ const jsonLd = JSON.stringify({ ); })} -
52
Approved specs
-
6
Workspace crates
-
3/6
Coverage-gated crates