css: Introduce new class `print-only`..

..to only show content when printing
This commit is contained in:
Johannes Meyer 2022-03-01 16:58:58 +01:00
parent 85c42f8400
commit bd57172f47
1 changed files with 6 additions and 0 deletions

View File

@ -7,3 +7,9 @@
display: none !important;
}
}
@media not print {
.print-only {
display: none !important;
}
}