diff --git a/src/app/benchmarks/[slug]/page.tsx b/src/app/benchmarks/[slug]/page.tsx index 559b2ab3..ed36aac1 100644 --- a/src/app/benchmarks/[slug]/page.tsx +++ b/src/app/benchmarks/[slug]/page.tsx @@ -315,9 +315,9 @@ export default async function BenchmarkPage({ so Google can show the crumb above the URL in the SERP. */} @@ -356,7 +358,7 @@ export default async function BenchmarkPage({ {/* Bench identifier - minimal mono line, no SaaS-style pills. */} -
+
{benchmark.category} @@ -373,10 +375,10 @@ export default async function BenchmarkPage({
{/* Title */} -

+

{benchmark.title}

-

+

{benchmark.subtitle}

diff --git a/src/app/globals.css b/src/app/globals.css index f08005bb..50114e34 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -327,4 +327,10 @@ textarea:focus-visible { html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; + /* Safety net: clip any rogue horizontal overflow at the root so a + single wide child (e.g. a min-w table) can never push the whole + page off-screen on mobile. Per-component fixes still target the + intrinsic min-widths so the clip rarely fires. `clip` (not hidden) + avoids creating a scroll container that breaks position: sticky. */ + overflow-x: clip; } diff --git a/src/components/count-leaderboard.tsx b/src/components/count-leaderboard.tsx index d437a7e5..8d36d0ac 100644 --- a/src/components/count-leaderboard.tsx +++ b/src/components/count-leaderboard.tsx @@ -49,7 +49,7 @@ export function CountLeaderboard({
)} {/* Thin summary strip. matches the latency-bench layout. */} -
+
-
+
+
{label}
-
+
{value} {hint ? ( {hint} diff --git a/src/components/ledger-table.tsx b/src/components/ledger-table.tsx index 2803636c..5ee3a429 100644 --- a/src/components/ledger-table.tsx +++ b/src/components/ledger-table.tsx @@ -56,7 +56,7 @@ export function LedgerTable({ benchmark }: Props) { return (
- +
diff --git a/src/components/region-grid.tsx b/src/components/region-grid.tsx index 1d8c70be..73c8ea00 100644 --- a/src/components/region-grid.tsx +++ b/src/components/region-grid.tsx @@ -38,7 +38,7 @@ export function RegionGrid({ benchmark }: Props) { return (
- +
diff --git a/src/components/summary-stat.tsx b/src/components/summary-stat.tsx index 073d845a..36a1d554 100644 --- a/src/components/summary-stat.tsx +++ b/src/components/summary-stat.tsx @@ -24,7 +24,7 @@ export function SummaryStat({ hint?: string; }) { return ( -
+
{label}
Product