From 14d6c8283900bbde8658e0cc34414ba3145d17f5 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Wed, 10 Jun 2026 16:27:33 -0400 Subject: [PATCH] Make invoice PAID stamp smaller and semi-transparent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduce font 80→52, border 5→3, add 35% opacity so stamp no longer obscures line items on dense invoices. Co-Authored-By: Claude Sonnet 4.6 --- src/PowderCoating.Application/Services/PdfService.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/PowderCoating.Application/Services/PdfService.cs b/src/PowderCoating.Application/Services/PdfService.cs index 6a2e753..6767218 100644 --- a/src/PowderCoating.Application/Services/PdfService.cs +++ b/src/PowderCoating.Application/Services/PdfService.cs @@ -175,13 +175,14 @@ public class PdfService : IPdfService container .AlignCenter() .AlignMiddle() + .Opacity(0.35f) .Rotate(-45f) - .Border(5) + .Border(3) .BorderColor(Colors.Green.Darken2) - .PaddingVertical(14) - .PaddingHorizontal(28) + .PaddingVertical(10) + .PaddingHorizontal(20) .Text("PAID") - .FontSize(80) + .FontSize(52) .Bold() .FontColor(Colors.Green.Darken2); }