Browse Source

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
pull/2190/merge
Alice Barker 4 years ago
committed by GitHub
parent
commit
b588e5522c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. 1
      client/components/common/search-results.vue

1
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);

Loading…
Cancel
Save