changed design for chat input

This commit is contained in:
Lucas Oliveira 2025-10-23 16:39:23 -03:00
parent 1e3d9a14fc
commit b56cf0deb4

View file

@ -1250,7 +1250,7 @@ function ChatPage() {
)} )}
</div> </div>
</StickToBottom.Content> </StickToBottom.Content>
<div className="p-6 pt-0 max-w-[960px] mx-auto w-full">
{/* Input Area - Fixed at bottom */} {/* Input Area - Fixed at bottom */}
<ChatInput <ChatInput
ref={chatInputRef} ref={chatInputRef}
@ -1277,6 +1277,7 @@ function ChatPage() {
setIsFilterHighlighted={setIsFilterHighlighted} setIsFilterHighlighted={setIsFilterHighlighted}
setIsFilterDropdownOpen={setIsFilterDropdownOpen} setIsFilterDropdownOpen={setIsFilterDropdownOpen}
/> />
</div>
</> </>
); );
} }