style(dashboard): thicker bars on Cycle Time charts to match Stabilization#93
Merged
Conversation
…ation The two "by Repo" Cycle Time charts (% PRs merged within 1 day, cycle time distribution) used 16px (h-4) CSS bars, looking visibly thinner than the Recharts-based Stabilization Distribution chart (auto-sized in a fixed 200px container, ~24px bars). Bump both bars to h-6 (24px) and the row gap to space-y-2 for a consistent look and feel across the dashboard. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
4 tasks
trentas
added a commit
that referenced
this pull request
Jun 11, 2026
Cycle Time charts (% PRs merged within 1 day, cycle time distribution) bars thickened to 24px to match the Stabilization Distribution look (#93). Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Makes the two "by Repo" Cycle Time charts — % PRs Merged within 1 Day and Cycle Time Distribution — match the look and feel of the Stabilization Distribution chart.
Why they looked different
BarChartin a fixedheight={200}container — bars auto-size to ~24px with a handful of repos.h-4), so they read visibly thinner.Change
Both Cycle Time charts: bar height
h-4→h-6(24px), row gapspace-y-1.5→space-y-2. CSS-only; no logic touched.tsc+ prettier clean. The Vercel preview deploy on this PR is the best way to eyeball the actual look before merging.🤖 Generated with Claude Code