Skip to content

Commit e9468ba

Browse files
authored
Add dark mode support for chatbot image
Signed-off-by: Owen <owenwahlgren@gmail.com>
1 parent 719c833 commit e9468ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/ui/chatbot.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Chatbot: React.FC<ChatbotProps> = ({ variant = 'fixed', className }) => {
2525
src="/avax-gpt.png"
2626
alt="AI Assistant"
2727
className={cn(
28-
"relative object-contain drop-shadow-lg",
28+
"relative object-contain drop-shadow-lg dark:invert",
2929
variant === 'fixed' ? "h-16 w-16" : "h-12 w-12"
3030
)}
3131
/>
@@ -34,4 +34,4 @@ const Chatbot: React.FC<ChatbotProps> = ({ variant = 'fixed', className }) => {
3434
);
3535
};
3636

37-
export default Chatbot;
37+
export default Chatbot;

0 commit comments

Comments
 (0)