We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 61c9ccc + b354609 commit cab8345Copy full SHA for cab8345
components/Search.module.scss
@@ -64,3 +64,8 @@
64
left: 0;
65
display: block;
66
}
67
+
68
+.headerSearchResults {
69
+ overflow-y: auto;
70
+ max-height: 80vh;
71
+}
components/Search.tsx
@@ -319,7 +319,10 @@ function ShowSearchResults({
319
320
321
const ActionListResults = (
322
- <div data-testid="search-results">
+ <div
323
+ data-testid="search-results"
324
+ className={cx('mt-3', isHeaderSearch && styles.headerSearchResults)}
325
+ >
326
<div className="my-4">
327
<p className="mx-4">
328
You're searching the <span className="color-fg-attention">{searchVersion}</span>{' '}
0 commit comments