@inf-monkeys-tech/monkeys-design 0.4.48 → 0.4.49

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.
@@ -4175,7 +4175,10 @@ function NavigationLayout({
4175
4175
  const sidebar = isHeadbarMode ? null : /* @__PURE__ */ jsxRuntime.jsx(
4176
4176
  "div",
4177
4177
  {
4178
- className: "relative h-full min-h-0 shrink-0 overflow-hidden transition-[width] duration-260",
4178
+ className: cn2(
4179
+ "relative h-full min-h-0 shrink-0 transition-[width] duration-260",
4180
+ sidebarCollapsed ? "z-20 overflow-visible" : "z-10 overflow-hidden"
4181
+ ),
4179
4182
  style: { width: sidebarWidth, transitionTimingFunction: NAVIGATION_LAYOUT_TRANSITION_TIMING },
4180
4183
  children: /* @__PURE__ */ jsxRuntime.jsx(
4181
4184
  Sidebar,