We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5131302 commit 8117059Copy full SHA for 8117059
1 file changed
app/components/Readme.vue
@@ -487,6 +487,20 @@ function handleClick(event: MouseEvent) {
487
summary {
488
font-size: 1rem;
489
color: var(--fg-muted);
490
+
491
+ /* Markdown often wraps headings/paragraphs inside <summary>, which
492
+ forces them onto new lines. Inline them so the disclosure marker
493
+ sits next to the label while preserving heading styles. */
494
+ > h1,
495
+ > h2,
496
+ > h3,
497
+ > h4,
498
+ > h5,
499
+ > h6,
500
+ > p {
501
+ display: inline;
502
+ margin: 0;
503
+ }
504
}
505
506
</style>
0 commit comments