Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions components/Search.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,8 @@
left: 0;
display: block;
}

.headerSearchResults {
overflow-y: auto;
max-height: 80vh;
}
5 changes: 4 additions & 1 deletion components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,10 @@ function ShowSearchResults({
}

const ActionListResults = (
<div data-testid="search-results">
<div
data-testid="search-results"
className={cx('mt-3', isHeaderSearch && styles.headerSearchResults)}
>
<div className="my-4">
<p className="mx-4">
You're searching the <span className="color-fg-attention">{searchVersion}</span>{' '}
Expand Down