diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-07-12 23:19:17 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-07-12 23:19:17 -0700 |
| commit | c5a1f7e581ce844d63e0311d1d57cf5dda3cf48e (patch) | |
| tree | e18024197215bcdfef6a7cb1926fa2dd234d54af /src/components/Search | |
| parent | da13eccb881b1aaf5b7bf1fbaad3a0754390285f (diff) | |
Remove 5 result limit and add scrolling
Diffstat (limited to 'src/components/Search')
| -rw-r--r-- | src/components/Search/index.styled.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Search/index.styled.ts b/src/components/Search/index.styled.ts index c1344d5..89af883 100644 --- a/src/components/Search/index.styled.ts +++ b/src/components/Search/index.styled.ts @@ -52,11 +52,12 @@ export const ResultsContainer = styled.div` display: flex; flex-direction: column; - justify-content: flex-end; + justify-content: flex-start; width: 100%; - overflow-y: scroll; + max-height: 500%; + overflow-y: auto; `; export const Result = styled.div` |
