imporoved readability of LOA reason

This commit is contained in:
2025-12-18 22:08:34 -05:00
parent bb4d6a3a1a
commit 871277882d

View File

@@ -234,18 +234,24 @@ function setPage(pagenum: number) {
<TableCell :colspan="8" class="p-0"> <TableCell :colspan="8" class="p-0">
<div class="w-full p-3 mb-6 space-y-3"> <div class="w-full p-3 mb-6 space-y-3">
<div class="flex justify-between items-start gap-4"> <div class="flex justify-between items-start gap-4">
<div class="flex-1"> <div class="space-y-3 w-full">
<!-- Title -->
<p class="text-md font-semibold text-foreground"> <!-- Header -->
Reason <div class="flex items-center gap-2">
</p> <h4 class="text-sm font-semibold text-foreground">
Reason
</h4>
<Separator class="flex-1" />
</div>
<!-- Content --> <!-- Content -->
<p <div
class="mt-1 text-md whitespace-pre-wrap leading-relaxed text-muted-foreground"> class="rounded-lg border bg-muted/40 px-4 py-3 text-sm leading-relaxed whitespace-pre-wrap text-muted-foreground w-full">
{{ post.reason }} {{ post.reason || 'No reason provided.' }}
</p> </div>
</div> </div>
</div> </div>
</div> </div>
</TableCell> </TableCell>