Skip to content

Commit 4d5080d

Browse files
authored
Fixes missing truncation on the project name text (#1857)
1 parent 2b34dbe commit 4d5080d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/webapp/app/components/navigation/SideMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export function SideMenu({
139139
>
140140
<div
141141
className={cn(
142-
"flex items-center justify-between border-b px-1 py-1 transition duration-300",
142+
"flex items-center justify-between overflow-hidden border-b px-1 py-1 transition duration-300",
143143
showHeaderDivider ? "border-grid-bright" : "border-transparent"
144144
)}
145145
>
@@ -304,7 +304,7 @@ function ProjectSelector({
304304
isOpen={isOrgMenuOpen}
305305
overflowHidden
306306
className={cn(
307-
"h-8 w-full justify-between overflow-hidden py-1 pl-1.5",
307+
"h-8 w-full justify-between py-1 pl-1.5",
308308
user.isImpersonating && "border border-dashed border-amber-400"
309309
)}
310310
>

apps/webapp/app/components/primitives/Popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function PopoverArrowTrigger({
175175
>
176176
{children}
177177
</Paragraph>
178-
<DropdownIcon className="size-4 min-w-[0.75rem] text-text-dimmed transition group-hover:text-text-bright" />
178+
<DropdownIcon className="size-4 min-w-4 text-text-dimmed transition group-hover:text-text-bright" />
179179
</PopoverTrigger>
180180
);
181181
}

0 commit comments

Comments
 (0)