@navservice/usuario 1.56.0 → 1.57.0
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/build/es/index.js +6 -11
- package/package.json +1 -1
package/build/es/index.js
CHANGED
|
@@ -8546,7 +8546,7 @@ function Profile({ isCollapsed = false }) {
|
|
|
8546
8546
|
});
|
|
8547
8547
|
}
|
|
8548
8548
|
const NavBar = ()=>/*#__PURE__*/ jsxs("nav", {
|
|
8549
|
-
className: "
|
|
8549
|
+
className: " relative z-40 h-16 w-full shrink-0 flex items-center justify-between px-4 md:px-6 bg-theme-card/80 text-theme-text border-b border-theme-border backdrop-blur-xl shadow-sm ",
|
|
8550
8550
|
children: [
|
|
8551
8551
|
/*#__PURE__*/ jsx("div", {
|
|
8552
8552
|
className: "flex items-center gap-3",
|
|
@@ -8563,19 +8563,14 @@ const NavBar = ()=>/*#__PURE__*/ jsxs("nav", {
|
|
|
8563
8563
|
const layout_NavBar = NavBar;
|
|
8564
8564
|
function Layout() {
|
|
8565
8565
|
return /*#__PURE__*/ jsxs("div", {
|
|
8566
|
-
className: "w-full h-[100dvh] bg-theme-bg text-theme-text",
|
|
8566
|
+
className: "flex flex-col w-full h-[100dvh] bg-theme-bg text-theme-text overflow-hidden",
|
|
8567
8567
|
children: [
|
|
8568
8568
|
/*#__PURE__*/ jsx(layout_NavBar, {}),
|
|
8569
8569
|
/*#__PURE__*/ jsx("main", {
|
|
8570
|
-
className: "
|
|
8571
|
-
children: /*#__PURE__*/
|
|
8572
|
-
className: "h-full
|
|
8573
|
-
children:
|
|
8574
|
-
/*#__PURE__*/ jsx("div", {
|
|
8575
|
-
className: "h-16 shrink-0"
|
|
8576
|
-
}),
|
|
8577
|
-
/*#__PURE__*/ jsx(Outlet, {})
|
|
8578
|
-
]
|
|
8570
|
+
className: "flex-1 overflow-y-auto overflow-x-hidden min-h-0 bg-theme-bg",
|
|
8571
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
8572
|
+
className: "min-h-full w-full flex flex-col",
|
|
8573
|
+
children: /*#__PURE__*/ jsx(Outlet, {})
|
|
8579
8574
|
})
|
|
8580
8575
|
})
|
|
8581
8576
|
]
|