Merge pull request #137 from knightjoel/pr/cleaner_print

Hide header and pagination footer when printing
This commit is contained in:
Radek Kozieł 2020-04-14 01:38:39 +02:00 committed by GitHub
commit 0efdbb73f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;