🔧 fix(chatMessage/index.tsx): change margin-bottom class from "my-3" to "mb-3" and add margin-top class "mt-1" to improve spacing and alignment of chat message component

This commit is contained in:
Lucas Oliveira 2023-07-06 01:34:37 -03:00
commit d6ec2a4713

View file

@ -36,7 +36,7 @@ export default function ChatMessage({
chat.isSend ? " bg-border" : " "
)}
>
<div className={classNames("my-3 ml-3 mr-6 ")}>
<div className={classNames("mb-3 ml-3 mr-6 mt-1 ")}>
{!chat.isSend ? (
<div className="flex h-8 w-8 items-center justify-center overflow-hidden rounded-md bg-[#afe6ef] p-5 text-2xl ">
🤖