fix: use Small/Header fonts in dividend table (consistent with eventi)

This commit is contained in:
2026-03-23 17:23:50 +01:00
parent 1f67285ae6
commit f95242df1a

View File

@@ -107,7 +107,7 @@ public class DividendSectionRenderer
private static void DrawHeader(PdfGraphics g, float x0, float y, float[] cw, float rh)
{
var headerFont = PdfTheme.TableBold;
var headerFont = PdfTheme.Header;
var whiteBrush = PdfBrushes.White;
var accentBrush = PdfTheme.AccentBlueBrush;
@@ -166,7 +166,7 @@ public class DividendSectionRenderer
{
var grid = new PdfGrid();
grid.Style.CellPadding = new PdfPaddings(2, 2, 2, 2);
grid.Style.Font = PdfTheme.TableFont;
grid.Style.Font = PdfTheme.Small;
// 15 colonne
grid.Columns.Add(15);