Skip to content

Commit

Permalink
Increase contrast for two elements
Browse files Browse the repository at this point in the history
  • Loading branch information
andychase committed Oct 2, 2024
1 parent 6318818 commit 07cb142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Chat/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export const ChatInput = ({

<textarea
ref={textareaRef}
className="m-0 w-full resize-none border-0 bg-transparent p-0 py-2 pr-4 pl-4 text-black dark:bg-transparent dark:text-white md:py-3 md:pl-4"
className="placeholder-neutral-700 m-0 w-full resize-none border-0 bg-transparent p-0 py-2 pr-4 pl-4 text-black dark:bg-transparent dark:text-white md:py-3 md:pl-4"
style={{
resize: 'none',
bottom: `${textareaRef?.current?.scrollHeight}px`,
Expand Down
2 changes: 1 addition & 1 deletion components/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Search: FC<Props> = ({ placeholder, searchTerm, onSearch }) => {
return (
<div className="relative flex items-center">
<input
className="w-full h-[42px] flex-1 rounded-md border border-neutral-200 px-4 py-3 pr-10 text-[14px] leading-3 text-black"
className="placeholder-neutral-700 w-full h-[42px] flex-1 rounded-md border border-neutral-200 px-4 py-3 pr-10 text-[14px] leading-3 text-black"
type="text"
placeholder={t(placeholder) || ''}
value={searchTerm}
Expand Down

0 comments on commit 07cb142

Please sign in to comment.