Skip to content

Commit

Permalink
fix: 답변 CSS 넘어가는 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
swgvenghy committed Oct 6, 2024
1 parent b709942 commit aa9958c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/components/atom/chat-card/chat-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const ChatCard = ({ content, role }: ChatCardProps) => {
'justify-start text-left mobile:max-w-full desktop:max-w-[2/3]': role !== 'user', // 모바일에서는 w-auto,
})}
>
<div className="text-md font-pretendard font-normal">
<div className="text-md max-w-full font-pretendard font-normal">
{content === 'loading' ? <Loader /> : <ReactMarkdown remarkPlugins={[remarkGfm]}>{content}</ReactMarkdown>}
</div>
</div>
Expand Down

0 comments on commit aa9958c

Please sign in to comment.