style(chatMessage): add full width to chat message container

This commit is contained in:
Gabriel Almeida 2023-04-26 10:04:25 -03:00
commit 01c23d6d8b

View file

@ -28,7 +28,7 @@ export default function ChatMessage({ chat }: { chat: ChatMessageType }) {
</div>
{!chat.isSend ? (
<div className="w-full text-start flex items-center">
<div className=" relative text-start inline-block text-gray-600 text-sm font-normal">
<div className="w-full relative text-start inline-block text-gray-600 text-sm font-normal">
{hidden && chat.thought && chat.thought !== "" && (
<div
onClick={() => setHidden((prev) => !prev)}