feat(ImagePreview): Fix Styles

This commit is contained in:
thororen 2024-10-17 13:54:52 -04:00 committed by GitHub
parent cdb50911c0
commit 0d466d3ec7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
.image-preview { .image-preview {
position: fixed; position: fixed;
z-index: 1000; z-index: 1000;
pointer-events: none; pointer-events: auto;
border: 2px solid var(--background-secondary); border: 2px solid var(--background-secondary);
background-color: var(--background-primary); background-color: var(--background-primary);
border-radius: 4px; border-radius: 4px;
@ -84,4 +84,4 @@
max-height: 90vh; max-height: 90vh;
object-fit: contain; object-fit: contain;
display: none; display: none;
} }