@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.
@@ -4153,7 +4153,10 @@ function NavigationLayout({
4153
4153
  const sidebar = isHeadbarMode ? null : /* @__PURE__ */ jsx(
4154
4154
  "div",
4155
4155
  {
4156
- className: "relative h-full min-h-0 shrink-0 overflow-hidden transition-[width] duration-260",
4156
+ className: cn2(
4157
+ "relative h-full min-h-0 shrink-0 transition-[width] duration-260",
4158
+ sidebarCollapsed ? "z-20 overflow-visible" : "z-10 overflow-hidden"
4159
+ ),
4157
4160
  style: { width: sidebarWidth, transitionTimingFunction: NAVIGATION_LAYOUT_TRANSITION_TIMING },
4158
4161
  children: /* @__PURE__ */ jsx(
4159
4162
  Sidebar,