fix(conversation): overflows in sources, removed tagline below input

This commit is contained in:
ManishMadan2882
2024-05-08 20:50:20 +05:30
parent afb18a3e4d
commit ea79494b6d
2 changed files with 5 additions and 5 deletions

View File

@@ -172,7 +172,7 @@ const ConversationBubble = forwardRef<
{sources?.map((source, index) => (
<div
key={index}
className={`max-w-fit cursor-pointer rounded-[28px] py-1 px-4 ${
className={`max-w-xs sm:max-w-sm md:max-w-md cursor-pointer rounded-[28px] py-1 px-4 ${
openSource === index
? 'bg-[#007DFF]'
: 'bg-[#D7EBFD] hover:bg-[#BFE1FF]'