solucionado el problema de la impresion de las ots

This commit is contained in:
2025-06-05 18:57:03 +02:00
parent fb292520a2
commit 6a9331747e
2 changed files with 49 additions and 15 deletions

View File

@ -13,24 +13,38 @@
/* ... the rest of the rules ... */
}
html,body {
font-family: Arial, sans-serif;
html, body {
width: 210mm;
height: 297mm;
max-width: 210mm;
width: 100%;
margin: 0 auto;
padding: 0;
background: white;
font-family: Arial, sans-serif;
font-size: 14px;
max-height: 297mm;
background-color: white;
box-sizing: border-box;
overflow-x: hidden;
}
.pdf-wrapper {
width: 100%;
box-sizing: border-box;
}
/* Opcional: ayuda a evitar cortes raros en tablas o secciones */
.page-break {
page-break-before: always;
}
.page {
border: 0px solid;
padding: 10px;
margin: 10px;
width: 100%;
max-width: 210mm;
max-height: 297mm;
height: auto !important;
max-height: none !important;
/*max-height: 297mm;*/
background-color: white;
}
.portada-img {
@ -189,8 +203,15 @@ table th {
width: 50px;
}
.ot-code {
font-size: 4em;
font-size: 3.5em;
}
.code-title {
font-size: 1.5em;
}
body, html, .pdf-wrapper, .page, div {
box-sizing: border-box;
max-width: 210mm;
overflow-x: hidden;
word-wrap: break-word;
}