refactor: standardize ticket detail card and tab styling

This commit is contained in:
2026-06-29 16:47:22 +05:30
parent 3e5dbd5893
commit adff2e2c41
16 changed files with 248 additions and 210 deletions

View File

@@ -98,13 +98,13 @@ export function ClosedTicketAction({ ticket }: { ticket: TicketDetail }) {
const reviewedAt = reviewer?.reviewed_at ?? getClosedAt(ticket);
return (
<Card className="relative overflow-hidden border bg-card/80">
<CardHeader className="relative pb-4">
<Card>
<CardHeader>
<CardTitle className="text-lg">Resolution Details</CardTitle>
<CardDescription>Review record for {ticket.id}</CardDescription>
</CardHeader>
<CardContent className="relative space-y-5">
<CardContent className="space-y-5">
<div className="space-y-4 rounded-xl border bg-muted/20 p-4">
<MetaField
label="Reviewed By"

View File

@@ -20,7 +20,7 @@ export function TicketActionCard({
}: TicketActionCardProps) {
return (
<Card>
<CardHeader className="pb-4">
<CardHeader>
<CardTitle className="flex items-center gap-2 text-base">
<Icon className={cn('size-4 text-primary', iconClassName)} />
{title}