style(portal): aumenta tamanho da badge de status no card de ticket
All checks were successful
All checks were successful
- Altera altura para h-9 (36px) igual ao componente web - Aumenta fonte de text-xs para text-sm 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3f9461a18f
commit
67433ed5e4
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ export function PortalTicketCard({ ticket }: PortalTicketCardProps) {
|
|||
<h3 className="mt-1 text-lg font-semibold text-neutral-900">{ticket.subject}</h3>
|
||||
</div>
|
||||
<div className="flex flex-col items-end gap-2 text-right">
|
||||
<Badge className={cn("rounded-full px-3 py-1 text-xs font-semibold", getTicketStatusBadgeClass(ticket.status))}>
|
||||
<Badge className={cn("h-9 rounded-full px-3 text-sm font-semibold", getTicketStatusBadgeClass(ticket.status))}>
|
||||
{getTicketStatusLabel(ticket.status)}
|
||||
</Badge>
|
||||
{!isCustomer ? (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue