33
Views
1
Comments
[PDF Viewer From Binary Data] Increase Height Of Viewer (PDF Viewer From Binary)
pdf-viewer-from-binary-data
Reactive icon
Forge asset by Tesan Dev
Application Type
Reactive

Hello, how can i increase the height of the viewer?

2022-12-12 06-07-07
Dhivyaraj Sivam

Hi Juan,

Please try running the code below or change the PDF viewer sizing from A4 to A3.

@page {    size: A3;    margin: 0;}

.cm.popup-dialog-body {    

max-height: 100% !important;    

overflow: initial;

}

@media all {  

.page-break {    

display: none;  

}} 

@media print {  

html, body {    

height: initial;    

overflow: initial !important;    

-webkit-print-color-adjust: exact;    

background: rgba(192,192,165,.2);    

background-color: #fff;  }} 

@media print {  

.page-break {    

margin-top: 1rem;    

display: block;    

page-break-before: auto;  

}}

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.