diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro
index a8c9221..9b72d6b 100644
--- a/src/pages/[lang]/index.astro
+++ b/src/pages/[lang]/index.astro
@@ -35,9 +35,6 @@ const t = useTranslations(lang);
placeholder={t("home.placeholder")}
/>
@@ -96,9 +93,9 @@ const t = useTranslations(lang);
data.map((results: Suggestion) => {
let span = document.createElement("span");
let pTag = document.createElement("p");
- span.classList.add("cursor-pointer", "border-b", "border-input-border-color", "last:border-none", "text-ellipsis", "whitespace-nowrap", "w-full", "text-input-text", "bg-primary", "h-9", "text-xl", "text-align-center", "overflow-hidden", "flex", "items-center", "justify-center", "hover:bg-lighter", "active:bg-primary");
+ span.classList.add("cursor-pointer", "border-b", "border-input-border-color", "last:rounded-b-xl", "last:border-none", "text-ellipsis", "whitespace-nowrap", "w-full", "text-input-text", "bg-primary", "h-9", "text-xl", "text-align-center", "overflow-hidden", "flex", "items-center", "justify-center", "hover:bg-lighter", "active:bg-primary");
span.addEventListener("click", function() {
- //when the box is clicked, we want to fill the omnibox and hit enter. This allows us to re-use the existing event listener on the input.
+ //When the box is clicked, we want to fill the omnibox and hit enter. This allows us to re-use the existing event listener on the input.
const event = new KeyboardEvent("keypress", {
key: 'Enter',
code: 'Enter',