Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ const comboboxStyles = css({
// -4px to count for the input focus outline.
marginLeft: `${comboboxOptionsLeft - 4}px`,
},
// We want the user to be able to see multiple stages, so
// we override the max-height set in LG.
// Note, this is brittle as it relies on LG internals.
'> :popover-open [role="listbox"]': {
maxHeight: '450px',
},
});

type StageOperatorSelectProps = {
Expand Down
Loading