Skip to content

Commit

Permalink
Fix side nav top offset
Browse files Browse the repository at this point in the history
  • Loading branch information
williammck committed Nov 30, 2024
1 parent d5e0d81 commit c3d07e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const SideNav: React.FC<SideNavProps> = ({ rootPath, sections }) => {
const { data: session } = useSession();

return (
<div className="sticky top-32 shrink-0">
<div className="sticky top-40 shrink-0">
{sections
.filter((section) => section.auth?.(session?.user) ?? true)
.map(({ title, children }) => (
Expand Down

0 comments on commit c3d07e1

Please sign in to comment.