Fixed: corner cases of paging support

This commit is contained in:
MarcinZiabek
2021-12-30 18:40:54 +01:00
committed by Marcin Ziąbek
parent c7008ad940
commit 96732b5856
9 changed files with 84 additions and 55 deletions
+3 -3
View File
@@ -12,9 +12,9 @@ namespace QuestPDF.Examples
{
return container
.Border(1)
.Background(dark ? Colors.Grey.Lighten2 : Colors.White)
.Padding(5)
.EnsureSpace(10);
.BorderColor(Colors.Grey.Medium)
.Background(dark ? Colors.Grey.Lighten3 : Colors.White)
.Padding(5);
}
public static void LabelCell(this IContainer container, string text) => container.Cell(true).Text(text, TextStyle.Default.SemiBold());