hedgedoc/frontend/global-styles/print.scss
Philip Molares b75a8db251 WIP
Signed-off-by: Philip Molares <philip.molares@udo.edu>
2024-11-20 18:57:59 +01:00

38 lines
482 B
SCSS

/*!
* SPDX-FileCopyrightText: 2024 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
@media print {
.heading-anchor {
display: none;
}
mark {
print-color-adjust: exact;
}
h1, h2, h3, h4, h5 {
break-after: avoid;
}
table, figure {
break-inside: avoid;
}
@page {
size: A4;
margin: 0 15pt;
}
.print-link {
display: block;
}
}
@media screen {
.print-link {
display: none;
}
}