diff --git a/python_docs_theme/static/pydoctheme.css b/python_docs_theme/static/pydoctheme.css index 662d987..0f6f8d3 100644 --- a/python_docs_theme/static/pydoctheme.css +++ b/python_docs_theme/static/pydoctheme.css @@ -754,3 +754,10 @@ div.deprecated-removed .versionmodified, div.versionremoved .versionmodified { color: var(--deprecated); } + +/* Hide header when printing */ +@media print { + div.mobile-nav { + display: none; + } +}