From 04f1fdf7d9bcffef4b9f2802c6e43c8708ed0439 Mon Sep 17 00:00:00 2001 From: Punith1117 Date: Wed, 3 Jun 2026 17:09:11 +0530 Subject: [PATCH] fix(editor): add zIndex for editor popover The popover was rendered beneath the sticky editor toolbar because the toolbar uses zIndex: 2 while the popover had no explicit stacking order. Add zIndex: 3 so the popover appears above the toolbar. --- design-system/pkg/src/editor/EditorPopover.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/design-system/pkg/src/editor/EditorPopover.tsx b/design-system/pkg/src/editor/EditorPopover.tsx index e9f338cc7..03e8ed860 100644 --- a/design-system/pkg/src/editor/EditorPopover.tsx +++ b/design-system/pkg/src/editor/EditorPopover.tsx @@ -225,6 +225,7 @@ export const DialogElement = forwardRef< minHeight: tokenSchema.size.element.regular, minWidth: tokenSchema.size.element.regular, outline: 0, + zIndex: 3 }), props.className )}