mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 13:47:26 +03:00
7d12548067
Improve printing layout
22 lines
277 B
SCSS
22 lines
277 B
SCSS
@media print {
|
|
.no-print {
|
|
display: none !important;
|
|
}
|
|
|
|
.pagebreak {
|
|
page-break-before: always;
|
|
}
|
|
}
|
|
|
|
@media not print {
|
|
.only-print {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
@mixin watermark {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
page-break-after: always;
|
|
}
|