Skip to content

Commit e994aa7

Browse files
fix: prevent long site title truncation in sidebar header
Override just-the-docs fixed header height to allow multi-line titles. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e8b716f commit e994aa7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

_includes/head_custom.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,11 @@
1111
</script>
1212
<style>
1313
.mermaid { text-align: center; }
14+
/* Allow long site titles to wrap instead of being clipped */
15+
@media (min-width: 50rem) {
16+
.site-header {
17+
height: auto;
18+
max-height: none;
19+
}
20+
}
1421
</style>

0 commit comments

Comments
 (0)