diff --git a/frontend/src/app/chat/[roomId]/ChatBody.tsx b/frontend/src/app/chat/[roomId]/ChatBody.tsx index fc6ff35..ee63d59 100644 --- a/frontend/src/app/chat/[roomId]/ChatBody.tsx +++ b/frontend/src/app/chat/[roomId]/ChatBody.tsx @@ -22,7 +22,7 @@ function Page() { }, []); return ( -
+
diff --git a/frontend/src/app/chat/[roomId]/page.tsx b/frontend/src/app/chat/[roomId]/page.tsx index e92f092..eb2043c 100644 --- a/frontend/src/app/chat/[roomId]/page.tsx +++ b/frontend/src/app/chat/[roomId]/page.tsx @@ -27,7 +27,10 @@ function Page() { }, []); return ( -
+
diff --git a/frontend/src/app/chat/layout.tsx b/frontend/src/app/chat/layout.tsx index d025440..c7d434d 100644 --- a/frontend/src/app/chat/layout.tsx +++ b/frontend/src/app/chat/layout.tsx @@ -10,7 +10,7 @@ export default function RoomLayout({ return ( -
+
{children}
diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index 3b84627..ec52c0b 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -17,7 +17,7 @@ @layer utilities { body.dark { - background-color: #222222; /* same as bg-gray-800 */ + background-color: #161616; /* same as bg-gray-800 */ } } @layer base { diff --git a/frontend/src/components/Chat/ChatBody.tsx b/frontend/src/components/Chat/ChatBody.tsx index 57ae499..70d3232 100644 --- a/frontend/src/components/Chat/ChatBody.tsx +++ b/frontend/src/components/Chat/ChatBody.tsx @@ -81,7 +81,14 @@ function ChatBody({ roomId }: { roomId: string }) { }, [socket, roomId]); return ( -
+
{messages[roomId]?.map((message: any, index: number) => ( +