From 67591bcb1336d59d9bedeb03fc0c98e3880b6824 Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Thu, 19 Sep 2024 12:46:53 -0600 Subject: [PATCH] fix: spaing with resume elements Fix spacing in the case that a resume entry uses paragraph style information instead of a bulleted list. --- lib.typ | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/lib.typ b/lib.typ index d124281..ab372aa 100644 --- a/lib.typ +++ b/lib.typ @@ -242,8 +242,8 @@ show heading.where(level: 1): it => [ #set block( - above: 1em, - below: 1em, + above: 0.5em, + below: 0.5em, ) #set text( size: 16pt, @@ -263,6 +263,10 @@ ] show heading.where(level: 2): it => { + set block( + above: 0.5em, + below: 0.5em, + ) set text( color-darkgray, size: 12pt, @@ -417,7 +421,13 @@ weight: "light", fill: color-darknight, ) - set par(leading: 0.65em) + set block ( + above: 0.75em, + below: 1.25em, + ) + set par( + leading: 0.65em, + ) body }