Hello,
I’m using quasar 0.14 inside of a rails app. Using quasar-mat css, tried printing, first results are pretty horrible; I use some pretty standard:
@media print {
div {
border: 1px solid grey;
}
header,
footer {
display:none;
}
body {
overflow: auto;
height: auto;
}
.scroll-y {
height: auto;
overflow: visible;
}
aside {
display: none !important;
}
}
but it comes out at 500 pages (they’re 3 at most), i don’t get any flex styled two column layout (I don’t get any layout at all actually, components come out squeezed and line-print styled) and got some stray textareas at page number 200+
Any suggestions on sensible print css?
Thanks