@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.
- package/dist/components/layout/index.js +4 -1
- package/dist/components/layout/index.js.map +1 -1
- package/dist/components/layout/index.mjs +4 -1
- package/dist/components/layout/index.mjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4153,7 +4153,10 @@ function NavigationLayout({
|
|
|
4153
4153
|
const sidebar = isHeadbarMode ? null : /* @__PURE__ */ jsx(
|
|
4154
4154
|
"div",
|
|
4155
4155
|
{
|
|
4156
|
-
className:
|
|
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,
|