From eed784c1fc1a20a5fd528aa6bfe2e247ff931281 Mon Sep 17 00:00:00 2001 From: Lion Arar Date: Tue, 7 Oct 2025 11:32:57 -0400 Subject: [PATCH] style: changed the color for the header inside the drawer, to not have too much green everywhere --- .../chatbot/components/conversation-box.vue | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/modules/chatbot/components/conversation-box.vue b/src/modules/chatbot/components/conversation-box.vue index df39425..63c5b06 100644 --- a/src/modules/chatbot/components/conversation-box.vue +++ b/src/modules/chatbot/components/conversation-box.vue @@ -26,8 +26,7 @@ const stopDrag = () => { window.addEventListener('mousemove', onDrag) window.addEventListener('mouseup', stopDrag) - - +//-------------------------------------------- // Block to handle the incomming and sending of the messages from the user and the ai const text = ref(''); @@ -76,6 +75,7 @@ const handleSend = async () => { } }; +//---------------------------------------------