This commit is contained in:
2025-04-26 11:57:32 -03:00
parent b27c164c2d
commit 7d29b943ff
2 changed files with 12 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ import mulhercomepi from "~/assets/mulher-com-epi.png";
</label>
<div
class="border border-black bg-white w-full rounded-lg relative"
class="border border-black bg-white w-full rounded-lg relative h-13"
>
<!-- <label for="search" class="py-3.5 pl-3">
<Icon
@@ -37,7 +37,7 @@ import mulhercomepi from "~/assets/mulher-com-epi.png";
/>
</label> -->
<Search
className="pagefind-ui"
className="pagefind"
uiOptions={{
showImages: false,
resetStyles: false,

View File

@@ -11,16 +11,20 @@ body {
@apply text-white bg-black scroll-pt-22 antialiased;
}
.pagefind-ui {
/* .pagefind-ui {
@apply w-full;
} */
.pagefind-ui__form {
@apply flex;
}
.pagefind-ui__search-input {
@apply focus:outline-none w-full p-3.5 placeholder:text-white;
@apply focus:outline-none w-full placeholder:text-white h-13 px-4;
}
.pagefind-ui__search-clear {
@apply absolute right-0;
@apply cursor-pointer px-2.5 text-sm hover:underline;
}
.pagefind-ui__result-excerpt,
@@ -39,17 +43,13 @@ body {
.pagefind-ui__results,
.pagefind-ui__button {
@apply mt-4;
}
.pagefind-ui__result {
@apply hover:underline;
@apply mt-3.5;
}
.pagefind-ui__result-link {
@apply font-semibold block;
@apply hover:underline font-medium;
}
.pagefind-ui__button {
@apply text-center text-sm cursor-pointer hover:underline border border-gray-300 rounded-lg p-1.5 w-full;
@apply text-center text-sm cursor-pointer hover:underline border border-gray-200 rounded-lg p-1.5 w-full;
}