Compare commits

..

1 Commits

Author SHA1 Message Date
Otto
25324a4d51 fix(frontend): remove fixed min-height from CoPilot message container
Removes the min-h-screen class from ConversationContent in
ChatMessagesContainer which was causing layout issues.

Fixes SECRT-1944
2026-02-12 12:33:08 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ export const ChatMessagesContainer = ({
return (
<Conversation className="min-h-0 flex-1">
<ConversationContent className="flex min-h-screen flex-1 flex-col gap-6 px-3 py-6">
<ConversationContent className="flex flex-1 flex-col gap-6 px-3 py-6">
{isLoading && messages.length === 0 && (
<div className="flex min-h-full flex-1 items-center justify-center">
<LoadingSpinner className="text-neutral-600" />

View File

@@ -152,7 +152,7 @@ export function CreateAgentTool({ part }: Props) {
<ToolAccordion {...getAccordionMeta(output)}>
{isOperating && (
<ContentGrid>
<ProgressBar value={progress} />
<ProgressBar value={progress} className="max-w-[280px]" />
<ContentHint>
This could take a few minutes, grab a coffee
</ContentHint>