diff --git a/htdocs/assets/_floatingbar.php b/htdocs/assets/_floatingbar.php
index ac3b6e5..df06075 100644
--- a/htdocs/assets/_floatingbar.php
+++ b/htdocs/assets/_floatingbar.php
@@ -81,6 +81,7 @@
+
SEARCH RESULTS
diff --git a/htdocs/assets/js/floatingbar-config.js b/htdocs/assets/js/floatingbar-config.js
index 7ba45d0..769426a 100644
--- a/htdocs/assets/js/floatingbar-config.js
+++ b/htdocs/assets/js/floatingbar-config.js
@@ -272,6 +272,10 @@ function inject_search_results (results, keyword) {
searchRes.appendChild(profileDiv);
});
}
+
+ const bottomSpacer = document.createElement("div");
+ bottomSpacer.className = "bottomspacer w-full h-[10px]";
+ searchRes.appendChild(bottomSpacer);
}
function inject_no_results(results, keyword) {
diff --git a/htdocs/assets/style.css b/htdocs/assets/style.css
index 2b5a561..c4bebbf 100644
--- a/htdocs/assets/style.css
+++ b/htdocs/assets/style.css
@@ -922,6 +922,14 @@ video {
height: 47vh;
}
+.h-\[20px\] {
+ height: 20px;
+}
+
+.h-\[10px\] {
+ height: 10px;
+}
+
.w-0 {
width: 0px;
}