Skip to content

Commit c189587

Browse files
fix(ui): Remove overflow hidden from GuidedSteps StepDetails
The overflow: hidden on StepDetails was clipping focus rings (box-shadow based) on form elements inside guided steps. Since min-width: 0 already prevents grid blowout and child components handle their own horizontal overflow via overflow-x: auto, this property is no longer needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2d5bf7d commit c189587

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

static/app/components/guidedSteps/guidedSteps.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,6 @@ const ChildrenWrapper = styled('div')<{isActive: boolean}>`
371371
`;
372372

373373
const StepDetails = styled('div')`
374-
overflow: hidden;
375374
grid-area: details;
376375
min-width: 0;
377376
`;

0 commit comments

Comments
 (0)