fix(editor): Prevent dialog overlay from rendering on top of AI Assistant (no-changelog) (#10509)

This commit is contained in:
Milorad FIlipović
2024-08-23 10:16:10 +02:00
committed by GitHub
parent 00412563b6
commit 9cd7f1ec0d

View File

@@ -97,7 +97,7 @@ function onClose() {
.container {
grid-area: rightsidebar;
height: 100%;
z-index: 3000; /* Above NDV, below notifications */
z-index: 99999; /* Needs to be high enough so it doesn't get covered by element-ui dialogs */
}
.wrapper {