Unverified Commit b588e552 authored by Alice Barker's avatar Alice Barker Committed by GitHub

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
parent d5d368cd
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment