From 2bd26a92c03bc61bd9541f6e9dd62746cd2855f9 Mon Sep 17 00:00:00 2001 From: ShaneBerhoff <57015490+ShaneBerhoff@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:27:42 -0400 Subject: [PATCH] fix positioning and text size --- client/src/components/ChatBox.jsx | 6 +++--- client/src/components/TerminalWindow.jsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/ChatBox.jsx b/client/src/components/ChatBox.jsx index 375dc61..5b2741f 100644 --- a/client/src/components/ChatBox.jsx +++ b/client/src/components/ChatBox.jsx @@ -58,13 +58,13 @@ const Chatbox = ({ messages }) => { > {messages.map((message, index) => (
- + {formatTime(message.createdAt)} - + [{message.username}] -

+

{message.content}

diff --git a/client/src/components/TerminalWindow.jsx b/client/src/components/TerminalWindow.jsx index 85b4983..1929916 100644 --- a/client/src/components/TerminalWindow.jsx +++ b/client/src/components/TerminalWindow.jsx @@ -12,7 +12,7 @@ const TerminalWindow = ({ children, title = 'geoChat' }) => { } }); return ( -
+
Home Chat Room