Printing improvements

This commit is contained in:
2022-05-08 15:46:08 -05:00
parent 191c9a5185
commit 05c8e0da9d
3 changed files with 16 additions and 1 deletions

View File

@@ -55,6 +55,7 @@ params:
linkedin: true
reddit: true
telegram: true
print: true
# show "Latest Posts" section at bottom of content pages
latestPostsOnContent: true

View File

@@ -82,6 +82,20 @@
margin-right: 0;
}
}
@media print {
.comments {
break-before: always;
}
.isso-comment > .isso-text-wrapper {
break-inside: avoid;
}
.isso-postbox,
.isso-feedlink {
display: none;
}
}
</style>