We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fafd446 commit 71551a6Copy full SHA for 71551a6
2 files changed
news/changelog-1.8.md
@@ -10,6 +10,7 @@ All changes included in 1.8:
10
11
### `html`
12
13
+- ([#10983](https://github.com/quarto-dev/quarto-cli/issues/10983)): Fix spacing inconsistency between paras and first section headings.
14
- ([#12259](https://github.com/quarto-dev/quarto-cli/issues/12259)): Fix conflict between `html-math-method: katex` and crossref popups (author: @benkeks).
15
16
### `revealjs`
src/resources/formats/html/bootstrap/_bootstrap-rules.scss
@@ -631,7 +631,11 @@ h1.title {
631
margin-top: 0;
632
}
633
634
-main.content > section:first-of-type > h2:first-child {
+main.content > p:has(+ section) {
635
+ margin-bottom: 2rem;
636
+}
637
+
638
+main.content > section:first-of-type > h2:nth-child(1) {
639
640
641
0 commit comments