style(conciliacion): aumentar tamano de fuente en tabla Por conciliar

This commit is contained in:
Horux Dev
2026-05-24 19:44:55 +00:00
parent a24947187a
commit 70f94ce0f2

View File

@@ -377,7 +377,7 @@ export default function ConciliacionPage() {
<CardContent className="pt-6">
<h3 className="font-medium mb-4">Por conciliar ({pendientesOrdenados.length})</h3>
<div className="overflow-x-auto">
<table className="w-full text-sm">
<table className="w-full text-base">
<thead>
<tr className="border-b text-center text-muted-foreground">
{!isVisor && (
@@ -418,7 +418,7 @@ export default function ConciliacionPage() {
<tbody>
{pendientesOrdenados.length === 0 ? (
<tr>
<td colSpan={isVisor ? 9 : 10} className="py-4 text-sm text-muted-foreground text-center">
<td colSpan={isVisor ? 9 : 10} className="py-4 text-base text-muted-foreground text-center">
No hay CFDIs pendientes de conciliar
</td>
</tr>
@@ -434,33 +434,33 @@ export default function ConciliacionPage() {
/>
</td>
)}
<td className="py-2 font-mono text-xs text-center" title={cfdi.uuid}>
<td className="py-2 font-mono text-sm text-center" title={cfdi.uuid}>
{cfdi.uuid?.substring(0, 8)}
</td>
<td className="py-2 text-xs text-center">
<td className="py-2 text-sm text-center">
{toCfdiDate(cfdi.fechaPagoP || cfdi.fechaEmision).toLocaleDateString('es-MX')}
</td>
{activeTab === 'EMITIDO' ? (
<>
<td className="py-2 font-mono text-xs text-center">{cfdi.rfcReceptor}</td>
<td className="py-2 text-xs truncate max-w-[120px] text-center">
<td className="py-2 font-mono text-sm text-center">{cfdi.rfcReceptor}</td>
<td className="py-2 text-sm truncate max-w-[120px] text-center">
{cfdi.nombreReceptor}
</td>
<td className="py-2 text-xs text-center">{cfdi.regimenFiscalEmisor || '-'}</td>
<td className="py-2 text-sm text-center">{cfdi.regimenFiscalEmisor || '-'}</td>
</>
) : (
<>
<td className="py-2 font-mono text-xs text-center">{cfdi.rfcEmisor}</td>
<td className="py-2 text-xs truncate max-w-[120px] text-center">
<td className="py-2 font-mono text-sm text-center">{cfdi.rfcEmisor}</td>
<td className="py-2 text-sm truncate max-w-[120px] text-center">
{cfdi.nombreEmisor}
</td>
<td className="py-2 text-xs text-center">{cfdi.regimenFiscalReceptor || '-'}</td>
<td className="py-2 text-sm text-center">{cfdi.regimenFiscalReceptor || '-'}</td>
</>
)}
<td className="py-2 text-xs font-medium text-center">
<td className="py-2 text-sm font-medium text-center">
{formatCurrencyConciliacion(getMonto(cfdi))}
</td>
<td className="py-2 text-xs text-center">{cfdi.metodoPago || '-'}</td>
<td className="py-2 text-sm text-center">{cfdi.metodoPago || '-'}</td>
<td className="py-2 text-center">
<Button
variant="ghost"