Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/webapp/app/components/navigation/SideMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export function SideMenu({
>
<div
className={cn(
"flex items-center justify-between border-b px-1 py-1 transition duration-300",
"flex items-center justify-between overflow-hidden border-b px-1 py-1 transition duration-300",
showHeaderDivider ? "border-grid-bright" : "border-transparent"
)}
>
Expand Down Expand Up @@ -304,7 +304,7 @@ function ProjectSelector({
isOpen={isOrgMenuOpen}
overflowHidden
className={cn(
"h-8 w-full justify-between overflow-hidden py-1 pl-1.5",
"h-8 w-full justify-between py-1 pl-1.5",
user.isImpersonating && "border border-dashed border-amber-400"
)}
>
Expand Down
2 changes: 1 addition & 1 deletion apps/webapp/app/components/primitives/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function PopoverArrowTrigger({
>
{children}
</Paragraph>
<DropdownIcon className="size-4 min-w-[0.75rem] text-text-dimmed transition group-hover:text-text-bright" />
<DropdownIcon className="size-4 min-w-4 text-text-dimmed transition group-hover:text-text-bright" />
</PopoverTrigger>
);
}
Expand Down