@industry-theme/file-city-panel 0.5.67 → 0.5.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -259306,7 +259306,10 @@ const SequenceDrawer = ({
259306
259306
  pointerEvents: visible ? "auto" : "none",
259307
259307
  backgroundColor: withAlpha(theme2.colors.background, 92),
259308
259308
  borderTop: `1px solid ${theme2.colors.border}`,
259309
- zIndex: 10,
259309
+ // Above the leader-line (z 25) and trail-path (z 26) overlays so
259310
+ // the drawer clips them, but below the snippet side pane (z 1900)
259311
+ // and its edge-dot (z 1901) so those stay anchored on top.
259312
+ zIndex: 30,
259310
259313
  overflow: "hidden",
259311
259314
  transition: isResizing ? `opacity ${PANEL_TRANSITION_MS}ms ease` : `height ${PANEL_TRANSITION_MS}ms ease, opacity ${PANEL_TRANSITION_MS}ms ease`
259312
259315
  },