Skip to content

Commit

Permalink
fix: blank page at the end (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonai committed Feb 13, 2023
1 parent cee3013 commit 4a5e392
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/client/internals/Print.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ watchEffect(() => {
<style lang="postcss">
html.print,
html.print body,
html.print #app,
html.print #page-root {
html.print #app {
height: auto;
overflow: auto;
}
html.print #page-root {
height: auto;
overflow: hidden;
}
html.print * {
-webkit-print-color-adjust: exact;
}
Expand Down

0 comments on commit 4a5e392

Please sign in to comment.