feat(print): respect page breaks

This commit is contained in:
Elian Doran 2025-01-31 20:32:12 +02:00
parent c06642ba1e
commit 7dfba9f513
No known key found for this signature in database

View File

@ -1655,4 +1655,14 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
contain: none !important;
}
/* Respect page breaks */
.page-break {
page-break-after: always;
break-after: always;
}
.page-break > * {
display: none !important;
}
}