fixes chatbubble padding

This commit is contained in:
ajaythapliyal
2023-02-24 09:33:18 +05:30
parent 3e20e4dc67
commit d1d478ea29

View File

@@ -35,7 +35,7 @@ export default function Conversation() {
return (
<ConversationBubble
ref={index === messages.length - 1 ? endMessageRef : null}
className="mb-7"
className={`${index === messages.length - 1 ? 'mb-20' : 'mb-7'}`}
key={index}
message={message.text}
type={message.type}