mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-02 13:35:12 -05:00
b75a8db251
Signed-off-by: Philip Molares <philip.molares@udo.edu>
38 lines
482 B
SCSS
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;
|
|
}
|
|
}
|