From b588e5522c55241abd443b15ab0dbc59b06f4bf0 Mon Sep 17 00:00:00 2001 From: Alice Barker Date: Sat, 15 Aug 2020 10:35:11 -0700 Subject: [PATCH] fix: add overflow scroll to search results (#2232) * Add overflow scroll to search results All search results were not visible on desktop screens beyond the viewport height, adding overflow-y: scroll fixes this * Update search-results.vue --- client/components/common/search-results.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/common/search-results.vue b/client/components/common/search-results.vue index 7648aa2f..da46975b 100644 --- a/client/components/common/search-results.vue +++ b/client/components/common/search-results.vue @@ -166,6 +166,7 @@ export default { position: fixed; top: 64px; left: 0; + overflow-y: auto; width: 100%; height: calc(100% - 64px); background-color: rgba(0,0,0,.9);