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> </label>
<div <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"> <!-- <label for="search" class="py-3.5 pl-3">
<Icon <Icon
@@ -37,7 +37,7 @@ import mulhercomepi from "~/assets/mulher-com-epi.png";
/> />
</label> --> </label> -->
<Search <Search
className="pagefind-ui" className="pagefind"
uiOptions={{ uiOptions={{
showImages: false, showImages: false,
resetStyles: false, resetStyles: false,

View File

@@ -11,16 +11,20 @@ body {
@apply text-white bg-black scroll-pt-22 antialiased; @apply text-white bg-black scroll-pt-22 antialiased;
} }
.pagefind-ui { /* .pagefind-ui {
@apply w-full; @apply w-full;
} */
.pagefind-ui__form {
@apply flex;
} }
.pagefind-ui__search-input { .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 { .pagefind-ui__search-clear {
@apply absolute right-0; @apply cursor-pointer px-2.5 text-sm hover:underline;
} }
.pagefind-ui__result-excerpt, .pagefind-ui__result-excerpt,
@@ -39,17 +43,13 @@ body {
.pagefind-ui__results, .pagefind-ui__results,
.pagefind-ui__button { .pagefind-ui__button {
@apply mt-4; @apply mt-3.5;
}
.pagefind-ui__result {
@apply hover:underline;
} }
.pagefind-ui__result-link { .pagefind-ui__result-link {
@apply font-semibold block; @apply hover:underline font-medium;
} }
.pagefind-ui__button { .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;
} }