🔧 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:
parent
4f4e77838f
commit
d6ec2a4713
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ">
|
||||
🤖
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue