Skip to content

Commit

Permalink
fix: 여백 포함 채팅 너비 설정 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
Najeong-Kim authored Feb 21, 2025
1 parent ea1f210 commit 75d7977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/chat/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface ChatProps {

const Chat = ({ chatList, isLoading, handleFinishAnswering, isAnswering, recreateChat }: ChatProps) => {
return (
<div className="mx-auto flex h-[calc(100vh-13.8rem)] w-full max-w-[68.4rem] flex-col gap-[4rem] overflow-y-auto px-[4rem] py-[6.4rem] mobile:h-[calc(100vh-19.4rem)]">
<div className="mx-auto flex h-[calc(100vh-13.8rem)] w-full max-w-[76.4rem] flex-col gap-[4rem] overflow-y-auto px-[4rem] py-[6.4rem] mobile:h-[calc(100vh-19.4rem)]">
{chatList.map((chat) =>
chat.isUser ? (
<UserBubble key={chat.id} text={chat.text} />
Expand Down

0 comments on commit 75d7977

Please sign in to comment.