Tighten command transcript rows and dashboard card

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Dotta
2026-03-11 13:14:08 -05:00
parent b3e71ca562
commit 487c86f58e
3 changed files with 203 additions and 44 deletions

View File

@@ -91,7 +91,7 @@ function AgentRunCard({
}) {
return (
<div className={cn(
"flex min-h-[280px] flex-col overflow-hidden rounded-2xl border shadow-sm",
"flex h-[320px] flex-col overflow-hidden rounded-xl border shadow-sm",
isActive
? "border-cyan-500/25 bg-cyan-500/[0.04] shadow-[0_16px_40px_rgba(6,182,212,0.08)]"
: "border-border bg-background/70",
@@ -124,7 +124,7 @@ function AgentRunCard({
</div>
{run.issueId && (
<div className="mt-3 rounded-xl border border-border/60 bg-background/60 px-2.5 py-2 text-xs">
<div className="mt-3 rounded-lg border border-border/60 bg-background/60 px-2.5 py-2 text-xs">
<Link
to={`/issues/${issue?.identifier ?? run.issueId}`}
className={cn(
@@ -140,7 +140,7 @@ function AgentRunCard({
)}
</div>
<div className="flex-1 overflow-y-auto p-3">
<div className="min-h-0 flex-1 overflow-y-auto p-3">
<RunTranscriptView
entries={transcript}
density="compact"