Editor Support

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Jason
2026-05-05 15:42:30 -05:00
parent 9f7c078ccc
commit 29154bd651
32 changed files with 3698 additions and 17 deletions
+18
View File
@@ -300,6 +300,24 @@ body {
z-index: 4;
}
.layer-foreground {
z-index: 5;
pointer-events: none; /* Allow clicks to pass through to controls below */
}
/* Layer transform modifiers */
.layer-flip-horizontal {
transform: scaleX(-1);
}
.layer-flip-vertical {
transform: scaleY(-1);
}
.layer-flip-both {
transform: scale(-1, -1);
}
.config-preview-notice {
position: absolute;
bottom: 10px;