fix(theme/OverviewGroup): limit max columns from 4 to 3#3127
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adjusts the OverviewGroup layout to cap the display at 3 columns (instead of 4), aligning the component’s flex and grid presentations with the new maximum-column requirement.
Changes:
- Update
OverviewGroupcontent items from 4-column sizing (25%) to 3-column sizing (~33.33%). - Update the empty-state grid from 4 columns to 3 columns and remove the intermediate breakpoint override.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Rsdoctor Bundle Diff AnalysisFound 3 projects in monorepo, 1 project with changes. 📊 Quick Summary
📋 Detailed Reports (Click to expand)📁 webPath:
📦 Download Diff Report: web Bundle Diff Generated by Rsdoctor GitHub Action |
Deploying rspress-v2 with
|
| Latest commit: |
eb4181b
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://2b282ce5.rspress-v2.pages.dev |
| Branch Preview URL: | https://syt-vibe-kanban-2cc3-overvie.rspress-v2.pages.dev |
6923630 to
eb4181b
Compare
Timeless0911
approved these changes
Feb 11, 2026
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.
Summary
before
after
Related Issue
Checklist
AI Summary
Reduce the maximum column count in the
OverviewGroupcomponent from 4 to 3 columns across both layout modes:Changes
__content__item): Changedmin-width/max-widthfrom25%(4 columns) to33.33%(3 columns)__grid): Changedgrid-template-columnsfromrepeat(4, 1fr)torepeat(3, 1fr)@media (max-width: 1280px)breakpoints that previously transitioned from 4 to 3 columns, since 3 columns is now the default maximumWhy
The 4-column layout stretched content too thin on most screen sizes. Limiting to 3 columns improves readability and visual balance of the overview page.
Responsive behavior
The remaining responsive breakpoints are preserved:
This PR was written using Vibe Kanban