mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-22 11:01:54 +03:00
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;
|
||
|
}
|