diff --git a/apps/marketplace/src/app/(public)/explore/ExploreSearchForm.tsx b/apps/marketplace/src/app/(public)/explore/ExploreSearchForm.tsx index 4755d7f..ccd2975 100644 --- a/apps/marketplace/src/app/(public)/explore/ExploreSearchForm.tsx +++ b/apps/marketplace/src/app/(public)/explore/ExploreSearchForm.tsx @@ -23,13 +23,8 @@ function toUtcDateTime(date: string, time: string) { return `${date}T${time || '10:00'}:00.000Z` } -function inputClassName(hasLeadingIcon = true) { - return `w-full border-0 bg-white px-4 py-4 text-sm text-stone-900 outline-none placeholder:text-stone-400 ${hasLeadingIcon ? 'pl-2' : ''}` -} - -function selectClassName() { - return 'w-full border-0 bg-white py-4 text-sm text-stone-900 outline-none' -} +const inputBase = 'w-full border-0 bg-white dark:bg-stone-800 px-4 py-4 text-sm text-stone-900 dark:text-stone-100 outline-none placeholder:text-stone-400 dark:placeholder:text-stone-500' +const selectBase = 'w-full border-0 bg-white dark:bg-stone-800 py-4 text-sm text-stone-900 dark:text-stone-100 outline-none' export default function ExploreSearchForm({ pickupLocation, @@ -103,17 +98,17 @@ export default function ExploreSearchForm({ } return ( -
-

{dict.searchTitle}

+
+

{dict.searchTitle}

-
- -
-
-