From 971c1f2fc922ba61b7eec99d64045c6091d65de2 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 13 May 2026 09:58:17 +0000 Subject: [PATCH] Replace three blue separators before grand total with one double-weight line The last item divider plus two double-rule lines produced three blue lines. Removed the item divider and the double-rule pair; replaced with a single line at thickness 3 (double the standard 1.5). https://claude.ai/code/session_014uUwDBtG5y5FuWcy5zqVD1 --- index.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/index.html b/index.html index 78c5cb5..d829ce5 100644 --- a/index.html +++ b/index.html @@ -703,16 +703,11 @@ async function generatePDF() { y -= 6; }); - // Item divider - pg.drawLine({start:{x:M.left,y}, end:{x:M.left+W,y}, thickness:1, color:accent}); - y -= lh; }); // Grand total needSpace(lh * 2); - pg.drawLine({start:{x:M.left,y}, end:{x:M.left+W,y}, thickness:1.5, color:accent}); - y -= 4; - pg.drawLine({start:{x:M.left,y}, end:{x:M.left+W,y}, thickness:1.5, color:accent}); + pg.drawLine({start:{x:M.left,y}, end:{x:M.left+W,y}, thickness:3, color:accent}); y -= lh; const gtStr = `Total reimbursement claim: ${baseCur} ${fmtAmt(state._grandTotal)}`; const gtW = fontBold.widthOfTextAtSize(gtStr, sz + 2);