From 3038141a3894768672a1471910edc4a5da067af2 Mon Sep 17 00:00:00 2001 From: Abhay Mathur Date: Sun, 28 Apr 2024 12:30:07 +0530 Subject: [PATCH] Update ChatWindow.tsx The selection dropdown menu for powered by has a white background with white text so options arent visible until hovered over. This change fixes that and sets the background of the dropdown to black so the options are visible. --- frontend/app/components/ChatWindow.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/app/components/ChatWindow.tsx b/frontend/app/components/ChatWindow.tsx index f4aa4dd0c..0faabd6e4 100644 --- a/frontend/app/components/ChatWindow.tsx +++ b/frontend/app/components/ChatWindow.tsx @@ -253,6 +253,10 @@ export function ChatWindow(props: { conversationId: string }) { setLlm(e.target.value); }} width={"240px"} + style={{ + backgroundColor: "#131318", + color: "#f8f8f8", + }} >