Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit ac2a4b6

Browse files
Fix Getting Started decision card overflow on Python Agent Adapters box
Grid items default to min-width: auto which prevented cards from shrinking below content size. Added min-width: 0 + overflow handling on decision-card, decision-header, and decision-tag to constrain properly within 1fr tracks. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b687924 commit ac2a4b6

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

web/src/pages/GetStarted.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
border-radius: 12px;
5757
padding: var(--space-xl);
5858
transition: border-color var(--transition-fast);
59+
min-width: 0;
60+
overflow: hidden;
5961
}
6062

6163
.decision-card:hover {
@@ -71,7 +73,9 @@
7173
display: flex;
7274
align-items: center;
7375
justify-content: space-between;
76+
gap: var(--space-sm);
7477
margin-bottom: var(--space-md);
78+
min-width: 0;
7579
}
7680

7781
.decision-header h3 {
@@ -88,6 +92,8 @@
8892
background: var(--color-primary-light);
8993
padding: 3px 10px;
9094
border-radius: 12px;
95+
white-space: nowrap;
96+
flex-shrink: 0;
9197
}
9298

9399
.decision-card--primary .decision-tag {
@@ -105,6 +111,7 @@
105111
padding: var(--space-md) !important;
106112
margin: 0 0 var(--space-md) !important;
107113
user-select: all;
114+
overflow-x: auto;
108115
}
109116

110117
.decision-result {

0 commit comments

Comments
 (0)