@navservice/usuario 1.57.0 → 1.58.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 +11 -6
- 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: " fixed inset-x-0 top-0 z-40 h-16 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 supports-[backdrop-filter]:bg-theme-card/70 shadow-sm will-change-transform ",
|
|
8550
8550
|
children: [
|
|
8551
8551
|
/*#__PURE__*/ jsx("div", {
|
|
8552
8552
|
className: "flex items-center gap-3",
|
|
@@ -8563,14 +8563,19 @@ const NavBar = ()=>/*#__PURE__*/ jsxs("nav", {
|
|
|
8563
8563
|
const layout_NavBar = NavBar;
|
|
8564
8564
|
function Layout() {
|
|
8565
8565
|
return /*#__PURE__*/ jsxs("div", {
|
|
8566
|
-
className: "
|
|
8566
|
+
className: "w-full h-[100dvh] bg-theme-bg text-theme-text",
|
|
8567
8567
|
children: [
|
|
8568
8568
|
/*#__PURE__*/ jsx(layout_NavBar, {}),
|
|
8569
8569
|
/*#__PURE__*/ jsx("main", {
|
|
8570
|
-
className: "
|
|
8571
|
-
children: /*#__PURE__*/
|
|
8572
|
-
className: "
|
|
8573
|
-
children:
|
|
8570
|
+
className: "h-full overflow-hidden",
|
|
8571
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
8572
|
+
className: "h-full overflow-y-auto overflow-x-hidden",
|
|
8573
|
+
children: [
|
|
8574
|
+
/*#__PURE__*/ jsx("div", {
|
|
8575
|
+
className: "h-16 shrink-0"
|
|
8576
|
+
}),
|
|
8577
|
+
/*#__PURE__*/ jsx(Outlet, {})
|
|
8578
|
+
]
|
|
8574
8579
|
})
|
|
8575
8580
|
})
|
|
8576
8581
|
]
|