mirror of
https://github.com/panr/hugo-theme-terminal.git
synced 2025-03-15 02:39:06 +03:00
Merge pull request #137 from knightjoel/pr/cleaner_print
Hide header and pagination footer when printing
This commit is contained in:
commit
0efdbb73f4
2 changed files with 8 additions and 0 deletions
|
@ -15,6 +15,10 @@
|
|||
flex-direction: column;
|
||||
position: relative;
|
||||
|
||||
@media print {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__inner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
.pagination {
|
||||
margin-top: 50px;
|
||||
|
||||
@media print {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__title {
|
||||
display: flex;
|
||||
text-align: center;
|
||||
|
|
Loading…
Add table
Reference in a new issue