Skip to content

Commit ef49d61

Browse files
committed
Merge branch 'main' of https://github.com/CapSoftware/cap
2 parents ad2a87b + 2a46206 commit ef49d61

File tree

1 file changed

+6
-1
lines changed
  • apps/web/app/(org)/dashboard/_components/Navbar

1 file changed

+6
-1
lines changed

apps/web/app/(org)/dashboard/_components/Navbar/Items.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,12 @@ const AdminNavItems = ({ toggleMobileNav }: Props) => {
130130
>
131131
<div className="flex items-center">
132132
{activeOrg?.organization.iconUrl ? (
133-
<div className="overflow-hidden relative flex-shrink-0 rounded-full size-[18px]">
133+
<div
134+
className={clsx(
135+
"overflow-hidden relative flex-shrink-0 rounded-full",
136+
sidebarCollapsed ? "size-6" : "size-7",
137+
)}
138+
>
134139
<Image
135140
src={activeOrg.organization.iconUrl}
136141
alt={

0 commit comments

Comments
 (0)