From 769a30e77e91b8e178aaef7d6bb587610bf4a74f Mon Sep 17 00:00:00 2001 From: Merul Dhiman Date: Sun, 24 Aug 2025 01:47:52 +0530 Subject: [PATCH] feat: blabsy active chat indcator --- .../blabsy/src/components/chat/chat-list.tsx | 8 ++-- .../(protected)/messages/[id]/+page.svelte | 47 ++++++++++++++++--- 2 files changed, 44 insertions(+), 11 deletions(-) diff --git a/platforms/blabsy/src/components/chat/chat-list.tsx b/platforms/blabsy/src/components/chat/chat-list.tsx index 8ea1784c..bb377775 100644 --- a/platforms/blabsy/src/components/chat/chat-list.tsx +++ b/platforms/blabsy/src/components/chat/chat-list.tsx @@ -106,8 +106,8 @@ export function ChatList(): JSX.Element { onClick={() => setCurrentChat(chat)} className={`flex items-center gap-3 rounded-lg p-3 transition-colors ${ currentChat?.id === chat.id - ? 'bg-primary text-white' - : 'hover:bg-gray-100 dark:hover:bg-gray-800' + ? 'bg-gray-200 dark:bg-gray-700 border-l-4 border-primary' + : 'hover:bg-gray-50 dark:hover:bg-gray-800' }`} >
@@ -193,8 +193,8 @@ function ChatListItem({ return (