Skip to content

Commit

Permalink
Fix suggestion color
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebelung-Dev committed Feb 20, 2024
1 parent 5039f9e commit 7935c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function Home() {
</div>
<div class={"bg-secondary rounded-[0_0_28px_28px] w-[600px]" + (!suggestions.length ? " hidden" : "")}>
{suggestions.map((suggestion: string) => (
<div onClick={() => clickSuggestion(suggestion)} class="h-14 flex items-center cursor-pointer px-4 select-none" key={suggestion}><Obfuscated>{suggestion}</Obfuscated></div>
<div onClick={() => clickSuggestion(suggestion)} class="h-14 flex items-center cursor-pointer px-4 select-none text-textInverse" key={suggestion}><Obfuscated>{suggestion}</Obfuscated></div>
))}
</div>
</div>
Expand Down

0 comments on commit 7935c42

Please sign in to comment.