feat: update dialog titles to use font-mono style for consistency across components

This commit is contained in:
2025-09-01 09:02:11 -06:00
parent 5a113ca603
commit 5181306b93
17 changed files with 274 additions and 114 deletions

View File

@@ -206,7 +206,7 @@ function DetailDialog({ row, onClose }: { row: RefRow | null; onClose: () => voi
<Dialog open={!!row} onOpenChange={(o) => !o && onClose()}>
<DialogContent className="max-w-3xl">
<DialogHeader>
<DialogTitle>{row?.titulo_archivo ?? "(Sin título)"}</DialogTitle>
<DialogTitle className="font-mono" >{row?.titulo_archivo ?? "(Sin título)"}</DialogTitle>
<DialogDescription>
{row?.descripcion || "Sin descripción"}
</DialogDescription>
@@ -333,7 +333,7 @@ function UploadDialog({
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-xl">
<DialogHeader>
<DialogTitle>Nuevo archivo de referencia</DialogTitle>
<DialogTitle className="font-mono" >Nuevo archivo de referencia</DialogTitle>
<DialogDescription>
Sube un documento y escribe instrucciones para su procesamiento. Se guardará en la base y se marcará como
<em> procesado </em> cuando termine el flujo.