Skip to content

Commit

Permalink
docs: fix nav shift
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrobino committed Sep 18, 2024
1 parent f1adee4 commit a804963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/docs/src/server/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type NavLinkProps = {

const SideBar: FC = () => {
return (
<nav class="bg-muted-background sticky top-0 hidden h-screen w-[20vw] min-w-52 justify-end overflow-y-auto lg:flex">
<nav class="bg-muted-background sticky top-0 hidden h-screen w-[20vw] min-w-56 justify-end overflow-y-auto lg:flex">
<div class="flex flex-col py-6 pl-6 pr-12">
<div class="pb-6">
<HomeLink />
Expand Down Expand Up @@ -118,7 +118,7 @@ export const InternalLinks: FC = () => {
];

return (
<ul>
<ul class="min-w-36">
{items.map(({ title, Icon }) => {
const href =
title === "Overview"
Expand Down

0 comments on commit a804963

Please sign in to comment.