hexo-theme-doc
hexo-theme-doc copied to clipboard
Print able page
Please add support for print able page that hide the navigation.
Best regards,
Sarin Na Wangkanai

I have an example of scss that will help with this.
@media print {
body{
background: #fff;
}
.doc-sidebar{
visibility: hidden;
width: 0;
}
.doc-content {
transform: translateX(0);
width: 100%;
}
.dc-card{
box-shadow: none;
}
}

@wangkanai Cool do you want to contribute?