fix: In light mode, the arrow in the "scroll to bottom" icon is difficult to see #299 (#304)

This commit is contained in:
Dasun Nimantha 2023-03-30 15:22:22 +05:30 committed by GitHub
parent e020de47ce
commit 4d7adf477a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -318,10 +318,10 @@ export const Chat: FC<Props> = memo(
{showScrollDownButton && ( {showScrollDownButton && (
<div className="absolute bottom-0 right-0 mb-4 mr-4 pb-20"> <div className="absolute bottom-0 right-0 mb-4 mr-4 pb-20">
<button <button
className="flex h-7 w-7 items-center justify-center rounded-full bg-white shadow-md hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-[#515152d7]" className="flex h-7 w-7 items-center justify-center rounded-full bg-gray-700 shadow-md hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-gray-700"
onClick={handleScrollDown} onClick={handleScrollDown}
> >
<IconArrowDown size={18} /> <IconArrowDown size={18}/>
</button> </button>
</div> </div>
)} )}