Skip to content

Commit ce77918

Browse files
committed
fix: chat styling
1 parent 38e9b83 commit ce77918

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/Chat/ChatInterface.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -403,11 +403,11 @@ export function ChatInterface({
403403
}
404404

405405
return (
406-
<Card className={`h-full flex flex-col shadow-sm max-w-4xl mx-auto ${className || ""}`}>
406+
<div className={`h-full flex flex-col shadow-sm max-w-4xl mx-auto ${className || ""}`}>
407407
{/* Chat Messages */}
408408
<ScrollArea
409409
ref={scrollAreaRef}
410-
className="flex-1 p-4"
410+
className="flex-1 p-4 bg-background border-0"
411411
onDragOver={handleDragOver}
412412
onDragLeave={handleDragLeave}
413413
onDrop={handleDrop}
@@ -504,7 +504,7 @@ export function ChatInterface({
504504
)}
505505

506506
{/* Chat Input */}
507-
<div className="border-t p-4 bg-muted/20">
507+
<div className="border rounded-2xl p-4 bg-muted/20">
508508
<div className="flex gap-3">
509509
<Input
510510
value={input}
@@ -585,6 +585,6 @@ export function ChatInterface({
585585
/>
586586
)}
587587
</div>
588-
</Card>
588+
</div>
589589
)
590590
}

0 commit comments

Comments
 (0)