From ff7d5fea91d0da6bddc2f50fbdd930e053edd8af Mon Sep 17 00:00:00 2001 From: Gaspard Jankowiak Date: Mon, 17 Nov 2025 11:49:48 +0100 Subject: [PATCH] fix overview table padding --- lib.typ | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib.typ b/lib.typ index 747d1df..928d2bb 100644 --- a/lib.typ +++ b/lib.typ @@ -219,11 +219,11 @@ let exercise_overview_table() = context { let top = 8pt if y == 0 { top = 2pt } if x == 0 { - (left:4pt, right:0pt, top: top, bottom: 0pt) + (left:4pt, right:2pt, top: top, bottom: 0pt) } else if x == entries.len() { - (left:4pt, right:4pt, top: top, bottom: 0pt) + (left:2pt, right:4pt, top: top, bottom: 0pt) } else { - (left:2pt, right:0pt, top: top, bottom: 0pt) + (left:2pt, right:2pt, top: top, bottom: 0pt) } }, align: (x, y) => { if (y == 1) { right+horizon } else { center+horizon }},