bugfix: add missing CSS for hiddenCanvasElement

This is required by the new pdf.js version.
This commit is contained in:
octocorvus 2024-05-07 18:42:55 +00:00 committed by Daniel Micay
parent ce7262b6b7
commit 4ccb01762d

View File

@ -45,3 +45,12 @@ canvas {
[data-main-rotation="270"] {
transform: rotate(270deg);
}
.hiddenCanvasElement {
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
display: none;
}