Skip to content

Commit bd78d17

Browse files
committed
chore: fix font size
1 parent 6a84bb4 commit bd78d17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/client/@/shadcn/components/nav-main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function NavMain({
6161
onClick={() => router.push(item.url)}
6262
>
6363
<div className="flex flex-row items-center justify-between w-full">
64-
<div className="flex flex-row items-center gap-x-2 w-full">
64+
<div className="flex flex-row items-center gap-x-2 w-full ">
6565
{item.icon && <item.icon className="size-4" />}
6666
<span
6767
className={sidebar.state === "collapsed" ? "hidden" : ""}
@@ -83,7 +83,7 @@ export function NavMain({
8383
<SidebarMenuSubItem key={subItem.title}>
8484
<SidebarMenuSubButton
8585
onClick={() => router.push(subItem.url)}
86-
className="cursor-pointer flex flex-row items-center justify-between w-full px-0 pl-2.5"
86+
className="cursor-pointer flex flex-row items-center justify-between w-full px-0 pl-2.5 text-xs"
8787
>
8888
<span>{subItem.title}</span>
8989
<span className="flex h-6 w-6 shrink-0 items-center bg-transparent border-none justify-center text-md font-medium">

0 commit comments

Comments
 (0)