This commit is contained in:
2025-10-28 12:34:43 +01:00
parent 90a642c1c5
commit e351638e52
3 changed files with 112 additions and 41 deletions
+10 -1
View File
@@ -244,13 +244,22 @@ button.danger:hover:not([disabled]) {
.preview-zoom-backdrop {
position: fixed;
inset: 0;
background: var(--overlay-backdrop);
background: rgba(15, 23, 42, 0);
transition: background 0.25s ease, opacity 0.25s ease;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
z-index: 3000;
cursor: zoom-out;
opacity: 0;
pointer-events: none;
}
.preview-zoom-backdrop--visible {
opacity: 1;
background: var(--overlay-backdrop);
pointer-events: auto;
}
.preview-zoom__stage {