diff --git a/public/js/components/searchbar/searchbar.js b/public/js/components/searchbar/searchbar.js index a1e0af854..caaccff4a 100644 --- a/public/js/components/searchbar/searchbar.js +++ b/public/js/components/searchbar/searchbar.js @@ -111,7 +111,7 @@ export default { calcSearchResultHeight: function() { const rect = this.$refs.results.getBoundingClientRect(); if( rect.height > 0 && rect.height < (window.innerHeight * 0.8) ) { - this.$refs.result.style.height = Math.ceil(rect.height) + 'px'; + this.$refs.result.style.height = Math.ceil(rect.height + 16) + 'px'; } else { this.$refs.result.style.height = Math.floor(window.innerHeight * 0.8) + 'px'; }