diff options
Diffstat (limited to '')
-rw-r--r-- | docs/public/index.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/public/index.css b/docs/public/index.css index e8b49cf88..9ccbabd32 100644 --- a/docs/public/index.css +++ b/docs/public/index.css @@ -115,6 +115,10 @@ article > section :is(ul, ol) > * + * { margin-top: 0.75rem; } +article > section nav :is(ul, ol) > * + * { + margin-top: inherit; +} + article > section li > :is(p, pre, blockquote):not(:first-child) { margin-top: 1rem; } @@ -123,6 +127,15 @@ article > section :is(ul, ol) { padding-left: 1em; } +article > section nav :is(ul, ol) { + padding-left: inherit; +} + +article > section nav { + margin-top: 1rem; + margin-bottom: 2rem; +} + article > section ::marker { font-weight: bold; color: var(--theme-text-light); |