style(ui): padronizar tipografia — font-medium para font-semibold

Padronização de peso tipográfico em títulos, rótulos de seção,
nomes de entidades e valores monetários em toda a interface.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Felipe Coutinho
2026-04-11 17:51:34 +00:00
parent 3bd8117b65
commit e8cc673e52
111 changed files with 361 additions and 272 deletions

View File

@@ -54,6 +54,7 @@ function AttachmentPreview({
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent
showCloseButton={false}
aria-describedby={undefined}
className="flex h-[92vh] w-[min(96vw,1400px)] max-w-none flex-col gap-0 overflow-hidden p-0 sm:p-0"
>
<DialogHeader className="flex-row items-center justify-between gap-3 border-b px-4 py-3 sm:px-5">

View File

@@ -44,8 +44,10 @@ export function AttachmentSection({
} = useTransactionAttachments(transactionId);
useEffect(() => {
onLoaded?.(items.length);
}, [items.length, onLoaded]);
if (!isLoading) {
onLoaded?.(items.length);
}
}, [items.length, isLoading, onLoaded]);
const invalidateAttachments = () => {
void queryClient.invalidateQueries({