diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-10-11 19:21:47 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-11 19:21:47 -0600 |
| commit | 30605ceabe2cebb35817505d7fbc3c388ebf65d6 (patch) | |
| tree | 28411a626915035b81f5edbbfb4e8533652cabde /src/stylesheets | |
| parent | 8d42a5a50b981b2d5cdf9c0621a16ce1972d6947 (diff) | |
resolves #4184 update default stylesheet to fix spacing around empty list item (PR #4185)
Diffstat (limited to 'src/stylesheets')
| -rw-r--r-- | src/stylesheets/asciidoctor.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stylesheets/asciidoctor.css b/src/stylesheets/asciidoctor.css index a4f77de1..37a8f24f 100644 --- a/src/stylesheets/asciidoctor.css +++ b/src/stylesheets/asciidoctor.css @@ -1639,6 +1639,11 @@ ol.unstyled { margin-left: 0; } +li > p:empty:only-child::before { + content: ""; + display: inline-block; +} + ul.checklist > li > p:first-child { margin-left: -1em; } |
