style(conciliacion): aumentar tamano de fuente en tabla Por conciliar
This commit is contained in:
@@ -377,7 +377,7 @@ export default function ConciliacionPage() {
|
|||||||
<CardContent className="pt-6">
|
<CardContent className="pt-6">
|
||||||
<h3 className="font-medium mb-4">Por conciliar ({pendientesOrdenados.length})</h3>
|
<h3 className="font-medium mb-4">Por conciliar ({pendientesOrdenados.length})</h3>
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-auto">
|
||||||
<table className="w-full text-sm">
|
<table className="w-full text-base">
|
||||||
<thead>
|
<thead>
|
||||||
<tr className="border-b text-center text-muted-foreground">
|
<tr className="border-b text-center text-muted-foreground">
|
||||||
{!isVisor && (
|
{!isVisor && (
|
||||||
@@ -418,7 +418,7 @@ export default function ConciliacionPage() {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{pendientesOrdenados.length === 0 ? (
|
{pendientesOrdenados.length === 0 ? (
|
||||||
<tr>
|
<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
|
No hay CFDIs pendientes de conciliar
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -434,33 +434,33 @@ export default function ConciliacionPage() {
|
|||||||
/>
|
/>
|
||||||
</td>
|
</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)}
|
{cfdi.uuid?.substring(0, 8)}
|
||||||
</td>
|
</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')}
|
{toCfdiDate(cfdi.fechaPagoP || cfdi.fechaEmision).toLocaleDateString('es-MX')}
|
||||||
</td>
|
</td>
|
||||||
{activeTab === 'EMITIDO' ? (
|
{activeTab === 'EMITIDO' ? (
|
||||||
<>
|
<>
|
||||||
<td className="py-2 font-mono text-xs text-center">{cfdi.rfcReceptor}</td>
|
<td className="py-2 font-mono text-sm text-center">{cfdi.rfcReceptor}</td>
|
||||||
<td className="py-2 text-xs truncate max-w-[120px] text-center">
|
<td className="py-2 text-sm truncate max-w-[120px] text-center">
|
||||||
{cfdi.nombreReceptor}
|
{cfdi.nombreReceptor}
|
||||||
</td>
|
</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 font-mono text-sm text-center">{cfdi.rfcEmisor}</td>
|
||||||
<td className="py-2 text-xs truncate max-w-[120px] text-center">
|
<td className="py-2 text-sm truncate max-w-[120px] text-center">
|
||||||
{cfdi.nombreEmisor}
|
{cfdi.nombreEmisor}
|
||||||
</td>
|
</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))}
|
{formatCurrencyConciliacion(getMonto(cfdi))}
|
||||||
</td>
|
</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">
|
<td className="py-2 text-center">
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
|
|||||||
Reference in New Issue
Block a user