From 9e4a4ddf393781f6710901a94c62ccf8c89d06da Mon Sep 17 00:00:00 2001 From: Weves Date: Tue, 19 Dec 2023 07:05:53 -0800 Subject: [PATCH] Update search helper styling --- web/src/components/search/SearchHelper.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/components/search/SearchHelper.tsx b/web/src/components/search/SearchHelper.tsx index 1d9fca02d..4eb89f718 100644 --- a/web/src/components/search/SearchHelper.tsx +++ b/web/src/components/search/SearchHelper.tsx @@ -7,7 +7,7 @@ import { } from "@/lib/search/interfaces"; import { BrainIcon } from "../icons/icons"; -const CLICKABLE_CLASS_NAME = "text-blue-400 cursor-pointer"; +const CLICKABLE_CLASS_NAME = "text-link cursor-pointer"; const NUM_DOCUMENTS_FED_TO_GPT = 5; interface Props { @@ -89,13 +89,13 @@ export const SearchHelper: React.FC = (props) => { } return ( -
+
- AI Assistant + AI Assistant
-

{message}

+

{message}

); };