Skip to content

Commit

Permalink
Fixes the css so all pages print (#2319)
Browse files Browse the repository at this point in the history
There were three issues with printing. The position relative shows more than the first page. The overflow auto allows all the pages to print. I have a note that should bee 22 pages but only 11 were printed without the overflow auto. The last issue is that display flex in Firefox causes only the first page to print. So added display: block to fix that.
  • Loading branch information
belcherj authored Sep 2, 2020
1 parent 13806fa commit a48204c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scss/print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
.note-detail-textarea,
.note-content-editor-shell,
.note-detail-wrapper {
overflow: visible;
display: block;
overflow: auto;
position: relative;
}

[class^='note-detail-'] {
Expand Down

0 comments on commit a48204c

Please sign in to comment.