fix: made the chat input box same width as the text area

This commit is contained in:
tusharmagar 2026-02-04 15:13:09 +05:30
parent d903a8cae3
commit 64e7223cbb
2 changed files with 2 additions and 2 deletions

View file

@ -1821,7 +1821,7 @@ function App() {
)
) : (
<div className="flex min-h-0 flex-1 flex-col">
<Conversation className="relative flex-1 overflow-y-auto">
<Conversation className="relative flex-1 overflow-y-auto [scrollbar-gutter:stable]">
<ScrollPositionPreserver />
<ConversationContent className={conversationContentClassName}>
{!hasConversation ? (

View file

@ -481,7 +481,7 @@ export function ChatSidebar({
{/* Conversation area */}
<div className="flex min-h-0 flex-1 flex-col relative">
<Conversation className="relative flex-1 overflow-y-auto">
<Conversation className="relative flex-1 overflow-y-auto [scrollbar-gutter:stable]">
<ScrollPositionPreserver />
<ConversationContent className={hasConversation ? "px-4 pb-24" : "px-4 min-h-full items-center justify-center"}>
{!hasConversation ? (