Improve paged media styling

Now that system themes are implemented and requires no more guessing (or
assumptions) for the theme, this makes it easier to style for paged
media.
This commit is contained in:
Gabriel Arazas 2022-05-09 20:11:02 +08:00
parent bfc7a2df40
commit 06b0d37fbd
2 changed files with 6 additions and 2 deletions

View File

@ -26,6 +26,8 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version
* More consistent theming for the content text. * More consistent theming for the content text.
* More styling for paged media.

View File

@ -227,11 +227,13 @@ footer {
@media print { @media print {
html { html {
color: var(--base00);
background: var(--base07);
overflow: auto; overflow: auto;
} }
p {
orphans: 3;
}
pre { pre {
max-height: unset; max-height: unset;
} }