From c5a1f7e581ce844d63e0311d1d57cf5dda3cf48e Mon Sep 17 00:00:00 2001 From: Brendan F Date: Wed, 12 Jul 2023 23:19:17 -0700 Subject: Remove 5 result limit and add scrolling --- src/components/Search/index.styled.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/components') 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` -- cgit v1.2.3