FIX: Adjust grid-template-columns to prevent text overflow (#30864)

### What's changed?
Added `minmax(0, 1fr)` to `grid-template-columns` to ensure the second
column can shrink to fit within the container, avoiding overflow in
smaller viewports or when the container width is limited.

### Before
<img width="489" alt="image"
src="https://github.com/user-attachments/assets/047acba2-6ce7-444e-9ef1-867d3643ee45"
/>

### After
<img width="489" alt="image"
src="https://github.com/user-attachments/assets/b5485746-8dac-422d-ba35-ab819ef78c5d"
/>
This commit is contained in:
Ella E. 2025-01-19 22:06:09 -07:00 committed by GitHub
parent a39b6daa65
commit 1702212982
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -435,12 +435,12 @@ pre.onebox code {
"icon branches"
"icon info"
"body body";
grid-template-columns: 2.5em 1fr;
grid-template-columns: 2.5em minmax(0, 1fr);
gap: 0.25em 0.75em;
@include breakpoint(mobile-extra-large) {
gap: 0.25em 0.5em;
grid-template-columns: 1.5em 1fr;
grid-template-columns: 1.5em minmax(0, 1fr);
grid-template-areas:
"icon title"
"branches branches"