From 1248b76b41ab28cd3191d90740262762b2651b91 Mon Sep 17 00:00:00 2001 From: Ankit Matth <146843890+Ankit-Matth@users.noreply.github.com> Date: Thu, 26 Oct 2023 06:20:50 +0530 Subject: [PATCH] Background color of like/dislike has been changed --- frontend/src/conversation/ConversationBubble.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx index 7fb377b2..bac0800c 100644 --- a/frontend/src/conversation/ConversationBubble.tsx +++ b/frontend/src/conversation/ConversationBubble.tsx @@ -199,10 +199,10 @@ const ConversationBubble = forwardRef< style={{ backgroundColor: isLikeHovered ? isLikeClicked - ? '#7D54D1' + ? 'rgba(125, 84, 209, 0.3)' : '#EEEEEE' : isLikeClicked - ? '#7D54D1' + ? 'rgba(125, 84, 209, 0.3)' : '#ffffff', }} > @@ -238,10 +238,10 @@ const ConversationBubble = forwardRef< style={{ backgroundColor: isDislikeHovered ? isDislikeClicked - ? '#F87171' + ? 'rgba(248, 113, 113, 0.3)' : '#EEEEEE' : isDislikeClicked - ? '#F87171' + ? 'rgba(248, 113, 113, 0.3)' : '#ffffff', }} >