mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
increases the bottom margin of conversation UI so that latest message
shows up above the input
This commit is contained in:
@@ -36,7 +36,7 @@ export default function Conversation() {
|
||||
return (
|
||||
<ConversationBubble
|
||||
ref={index === messages.length - 1 ? endMessageRef : null}
|
||||
className={`${index === messages.length - 1 ? 'mb-20' : 'mb-7'}`}
|
||||
className={`${index === messages.length - 1 ? 'mb-24' : 'mb-7'}`}
|
||||
key={index}
|
||||
message={message.text}
|
||||
type={message.type}
|
||||
|
||||
Reference in New Issue
Block a user