fix pdf-print for public pages

This commit is contained in:
Philipinho
2026-09-05 16:27:40 +01:00
parent 84e1e56cf6
commit 01cfedddcf
@@ -900,3 +900,37 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
/* ---------- Print ---------- */
/* Only the article prints; the body grid collapses so it takes the page width. */
@media print {
.header,
.sidebar,
.toc,
.articleActions,
.breadcrumbs,
.pageNav,
.footer {
display: none !important;
}
.root {
--docs-bg: #fff;
--docs-fg: #1f1f1f;
--docs-content-fg: var(--docs-fg);
min-height: 0;
background-color: #fff;
color: var(--docs-fg);
}
.body {
display: block;
}
.article {
max-width: none;
padding: 0;
}
}