fix: export dialog canvas positioning (#3397)

This commit is contained in:
David Luzar 2021-04-04 14:41:22 +02:00 committed by GitHub
parent 67289ef4ce
commit 422c25449f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,9 +47,11 @@
image-rendering: -moz-crisp-edges; // FF
z-index: var(--zIndex-canvas);
}
// Remove canvas from document flow to avoid resizeObserver feedback loop
// (see https://github.com/excalidraw/excalidraw/pull/3379)
#canvas {
// Remove the main canvas from document flow to avoid resizeObserver
// feedback loop (see https://github.com/excalidraw/excalidraw/pull/3379)
position: absolute;
}