Hide header and pagination footer when printing

Since the header and pagination footer contain links that help a reader
navigate the site in a browser, they serve little value on a printed
copy.
This commit is contained in:
Joel Knight 2020-04-05 15:22:18 -06:00 committed by panr
parent ca115e308e
commit bcd630ad2e
2 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,10 @@
flex-direction: column;
position: relative;
@media print {
display: none;
}
&__inner {
display: flex;
align-items: center;

View File

@ -1,6 +1,10 @@
.pagination {
margin-top: 50px;
@media print {
display: none;
}
&__title {
display: flex;
text-align: center;