mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
23 lines
306 B
SCSS
23 lines
306 B
SCSS
/**
|
|
* Additional rules when generating PDF from the reports.
|
|
*/
|
|
|
|
// Hide all fas icons
|
|
.fas {
|
|
display: none;
|
|
}
|
|
|
|
.print-report-body {
|
|
.print-report {
|
|
overflow-y: hidden !important;
|
|
overflow-x: hidden !important;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
thead {
|
|
display: table-row-group;
|
|
}
|