diff --git a/bun.lockb b/bun.lockb index eac0974b..263389b0 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/web/components/routes/link/partials/link-item.tsx b/web/components/routes/link/partials/link-item.tsx index f684a06b..1718896f 100644 --- a/web/components/routes/link/partials/link-item.tsx +++ b/web/components/routes/link/partials/link-item.tsx @@ -81,7 +81,7 @@ export const LinkItem: React.FC = ({ onBlur={() => setActiveItemIndex(null)} className={cn( "relative cursor-default outline-none", - "grid grid-cols-[auto_1fr_auto] items-center gap-x-2 py-2 max-lg:px-4 sm:px-5 sm:py-2", + "mx-auto grid w-[98%] grid-cols-[auto_1fr_auto] items-center gap-x-2 rounded-lg p-2", { "bg-muted-foreground/5": isActive, "hover:bg-muted/50": !isActive diff --git a/web/components/routes/page/list.tsx b/web/components/routes/page/list.tsx index 149cb9ce..fb525661 100644 --- a/web/components/routes/page/list.tsx +++ b/web/components/routes/page/list.tsx @@ -81,7 +81,7 @@ interface PageListItemsProps { const PageListItems: React.FC = ({ listRef, setItemRef, personalPages, activeItemIndex }) => ( diff --git a/web/components/routes/page/partials/page-item.tsx b/web/components/routes/page/partials/page-item.tsx index 6b484eed..8b8488b7 100644 --- a/web/components/routes/page/partials/page-item.tsx +++ b/web/components/routes/page/partials/page-item.tsx @@ -22,7 +22,7 @@ export const PageItem = React.forwardRef(({ pa ref={ref} tabIndex={isActive ? 0 : -1} className={cn( - "relative block cursor-default outline-none", + "relative block cursor-default rounded-lg outline-none", "h-12 items-center gap-x-2 py-2 max-lg:px-4 sm:px-6", { "bg-muted-foreground/10": isActive,