Skip to content

Commit

Permalink
Merge pull request #195 from datagrove/bugFix
Browse files Browse the repository at this point in the history
dark mode search text
  • Loading branch information
r-southworth authored Nov 27, 2024
2 parents e59f0f7 + 86700c7 commit 2c1db6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/HeaderSearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const SearchBar: Component = () => {
name="query"
id="headerSearch"
aria-label={t("formLabels.search")}
class="ml-2 h-full w-full rounded-full bg-background1 py-3 dark:bg-background1-DM"
class="ml-2 h-full w-full rounded-full bg-background1 py-3 dark:bg-background1-DM dark:text-white"
value={searchString() ? searchString() : ""}
oninput={(e) => setSearchString(e.target.value)}
/>
Expand Down

0 comments on commit 2c1db6f

Please sign in to comment.