Hello,
You can try fixing this with some Css , try below css if this help's let me know,
@media all {
.page-break {
display: none;
}
}
@media print {
html, body {
height: initial !important;
overflow: initial !important;
-webkit-print-color-adjust: exact;
}
}
@page {
size: auto;
}
@media print {
.page-break {
margin-top: 1rem;
display: block;
page-break-before: auto;
}
}
Hope this will help, Also check if there is extra margin-top or margin bottom or padding-top or padding-bottom.
if added, remove it and give it a try.
Thanks,
Tousif Khan