zudoku 0.4.2-dev.12 → 0.4.2-dev.13
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/lib/components/Layout.js +1 -1
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/navigation/SidebarWrapper.js +1 -1
- package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
- package/lib/zudoku.components.js +2 -2
- package/lib/zudoku.components.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/Layout.tsx +1 -1
- package/src/lib/components/navigation/SidebarWrapper.tsx +1 -1
package/package.json
CHANGED
|
@@ -58,7 +58,7 @@ export const Layout = ({ children }: { children?: ReactNode }) => {
|
|
|
58
58
|
<Sidebar />
|
|
59
59
|
<main
|
|
60
60
|
className={cn(
|
|
61
|
-
"dark:border-white/10 translate-x-0",
|
|
61
|
+
"h-full dark:border-white/10 translate-x-0",
|
|
62
62
|
"lg:overflow-visible",
|
|
63
63
|
// This works in tandem with the `SidebarWrapper` component
|
|
64
64
|
"lg:peer-data-[navigation=true]:w-[calc(100%-var(--side-nav-width))]",
|
|
@@ -14,7 +14,7 @@ export const SidebarWrapper = forwardRef<
|
|
|
14
14
|
className={cn(
|
|
15
15
|
"scrollbar peer hidden lg:flex flex-col fixed text-sm overflow-y-auto shrink-0",
|
|
16
16
|
"px-[--padding-nav-item] -mx-[--padding-nav-item] pb-20 mt-[--padding-content-top]",
|
|
17
|
-
"w-[--side-nav-width] h-
|
|
17
|
+
"w-[--side-nav-width] h-[calc(100%-var(--header-height))] scroll-pt-2 gap-2",
|
|
18
18
|
className,
|
|
19
19
|
)}
|
|
20
20
|
ref={ref}
|