Skip to content

Commit 2b03a1c

Browse files
authored
Merge pull request #91 from SWMTheFirstTake/dev
chat 부분 폰트 크기 무드 정상화
2 parents f83dd0b + 28a24e2 commit 2b03a1c

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/components/chat/message/ChatInputBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default function ChatInputBox() {
9191
bg-white dark:bg-slate-800
9292
flex-1 resize-none
9393
min-h-[48px] max-h-[80px]
94-
text-3xl
94+
text-xl
9595
px-5 py-3
9696
border-none focus-visible:border-0 focus:outline-none focus:ring-0
9797
"

src/components/chat/message/balloon/MainPost.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { useState } from 'react';
22
import LucideIcon from '@/components/ui/icons/LucideIcon';
33
import { elapsedTimeText } from '@/lib/utils';
4-
import ReplyList from './ReplyList';
5-
import ProductGallery from './ProductGallery';
4+
import ReplyList from '@/components/chat/message/balloon/ReplyList';
5+
import ProductGallery from '@/components/chat/message/balloon/ProductGallery';
66

77
interface MainPostProps {
88
message: Message;
@@ -38,7 +38,7 @@ export default function MainPost({ message, replies, onSaveCodination, isSaved }
3838
<div className="pt-3 ">
3939
<button
4040
onClick={() => setIsRepliesCollapsed(!isRepliesCollapsed)}
41-
className="flex items-center space-x-2 text-md mb-3 "
41+
className="flex items-center space-x-2 text-xl mb-3 "
4242
>
4343
<LucideIcon
4444
name={isRepliesCollapsed ? 'ChevronRight' : 'ChevronDown'}

src/components/chat/message/balloon/MessageBalloon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import MainPost from './MainPost';
2-
import SingleMessage from './SingleMessage';
1+
import MainPost from '@/components/chat/message/balloon/MainPost';
2+
import SingleMessage from '@/components/chat/message/balloon/SingleMessage';
33
import { useCodinationSave } from '@/hooks/useCodinationSave';
44

55
export default function MessageBalloon({

src/components/chat/message/balloon/MessageGroup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import MessageBalloon from './MessageBalloon';
2-
import MessageDivider from './MessageDivider';
1+
import MessageBalloon from '@/components/chat/message/balloon/MessageBalloon';
2+
import MessageDivider from '@/components/chat/message/balloon/MessageDivider';
33

44
interface MessageGroup {
55
id: string;

src/components/chat/message/balloon/ReplyList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import Image from 'next/image';
22
import MessageParser from '@/components/chat/message/balloon/MessageParser';
33
import { elapsedTimeText } from '@/lib/utils';
44
import { messageColor } from '@/styles/chat';
5-
import ProductGallery from './ProductGallery';
6-
import SaveCodinationButton from './SaveCodinationButton';
5+
import ProductGallery from '@/components/chat/message/balloon/ProductGallery';
6+
import SaveCodinationButton from '@/components/chat/message/balloon/SaveCodinationButton';
77

88
interface ReplyListProps {
99
replies: Message[];
@@ -37,7 +37,7 @@ export default function ReplyList({ replies, onSaveCodination, isSaved }: ReplyL
3737
</div>
3838

3939
<div className="flex w-full min-w-0 flex-col space-y-3 overflow-hidden dark:text-blue-300">
40-
<p className="flex space-x-2 text-sm">
40+
<p className="flex space-x-2 text-xl">
4141
<span className="font-extrabold">{reply.agent?.agentname || 'AI'}</span>
4242
<span className="text-gray-500">{elapsedTimeText(reply.createdAt)}</span>
4343
</p>

src/components/chat/message/balloon/SingleMessage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import Image from 'next/image';
22
import MessageParser from '@/components/chat/message/balloon/MessageParser';
33
import { elapsedTimeText } from '@/lib/utils';
44
import { messageColor } from '@/styles/chat';
5-
import ProductGallery from './ProductGallery';
6-
import SaveCodinationButton from './SaveCodinationButton';
5+
import ProductGallery from '@/components/chat/message/balloon/ProductGallery';
6+
import SaveCodinationButton from '@/components/chat/message/balloon/SaveCodinationButton';
77

88
interface SingleMessageProps {
99
message: Message;

0 commit comments

Comments
 (0)