@@ -542,12 +542,12 @@ export function LeaderboardTable({
542542 key = { p . provider }
543543 className = { `transition-none h-10 sm:h-12 ${ isWinner ? "bg-primary/6 hover:bg-primary/10" : "" } ` }
544544 >
545- < TableCell className = "text-center py-2.5 " >
545+ < TableCell className = "text-center py-2" >
546546 < span className = "text-[0.65rem] text-muted-foreground" >
547547 { rank }
548548 </ span >
549549 </ TableCell >
550- < TableCell className = "py-2.5 " >
550+ < TableCell className = "py-2" >
551551 < div className = "flex flex-col gap-1 items-start" >
552552 < div className = "flex items-center gap-x-2 gap-y-0.5 flex-nowrap" >
553553 { PROVIDER_LOGOS [ p . provider ] && (
@@ -579,18 +579,18 @@ export function LeaderboardTable({
579579 ) : null }
580580 </ div >
581581 </ TableCell >
582- < TableCell className = "hidden sm:table-cell py-2.5 font-mono text-[0.82rem] text-foreground tabular-nums" >
582+ < TableCell className = "hidden sm:table-cell py-2 font-mono text-[0.82rem] text-foreground tabular-nums" >
583583 { p . browserRegion ?? "—" }
584584 </ TableCell >
585- < TableCell className = "hidden sm:table-cell py-2.5 text-right font-mono text-[0.82rem] text-foreground tabular-nums" >
585+ < TableCell className = "hidden sm:table-cell py-2 text-right font-mono text-[0.82rem] text-foreground tabular-nums" >
586586 < span > { p . totalRuns . toLocaleString ( "en-US" ) } </ span >
587587 { p . concurrency > 1 && (
588588 < span className = "block text-[0.6rem] text-muted-foreground" >
589589 { ( p . totalRuns / p . concurrency ) . toLocaleString ( "en-US" ) } × { p . concurrency }
590590 </ span >
591591 ) }
592592 </ TableCell >
593- < TableCell className = { `hidden sm:table-cell py-2.5 text-right ${ sc ( "reliability" ) } ` } >
593+ < TableCell className = { `hidden sm:table-cell py-2 text-right ${ sc ( "reliability" ) } ` } >
594594 < div className = "flex flex-col items-end h-[2.25rem] justify-center" >
595595 < span className = "font-mono text-[0.82rem] tabular-nums leading-tight text-foreground" >
596596 { p . successRate . toFixed ( 1 ) } %
@@ -611,23 +611,23 @@ export function LeaderboardTable({
611611 return (
612612 < TableCell
613613 key = { i }
614- className = { `hidden sm:table-cell py-2.5 text-right font-mono text-[0.82rem] text-foreground tabular-nums ${ sc ( segSortKeys [ i ] ) } ` }
614+ className = { `hidden sm:table-cell py-2 text-right font-mono text-[0.82rem] text-foreground tabular-nums ${ sc ( segSortKeys [ i ] ) } ` }
615615 >
616616 { Math . round ( ( p [ key ] as number ) ) . toLocaleString ( "en-US" ) }
617617 </ TableCell >
618618 ) ;
619619 } ) }
620620 < TableCell
621- className = { `hidden sm:table-cell py-2.5 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "latency" ) } ` }
621+ className = { `hidden sm:table-cell py-2 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "latency" ) } ` }
622622 >
623623 { Math . round ( totalMs ) . toLocaleString ( "en-US" ) }
624624 </ TableCell >
625- < TableCell className = { `hidden sm:table-cell py-2.5 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "cost" ) } ` } >
625+ < TableCell className = { `hidden sm:table-cell py-2 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "cost" ) } ` } >
626626 { p . pricePerHour != null ? (
627627 < > ${ p . pricePerHour . toFixed ( 2 ) } /hr</ >
628628 ) : "—" }
629629 </ TableCell >
630- < TableCell className = { `py-2.5 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "value" ) } ` } >
630+ < TableCell className = { `py-2 text-right font-mono text-[0.82rem] tabular-nums text-foreground ${ sc ( "value" ) } ` } >
631631 { ( valueScores . get ( p . provider ) ?? 0 ) . toFixed ( 3 ) }
632632 </ TableCell >
633633 </ TableRow >
0 commit comments