Skip to content

Commit 424b734

Browse files
samejrmatt-aitken
authored andcommitted
Brighter + button to add a dashboard
1 parent f0ab6d8 commit 424b734

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ function CreateDashboardButton({
10221022
<DialogTrigger asChild>
10231023
<button
10241024
type="button"
1025-
className="rounded p-0.5 text-text-dimmed transition hover:bg-charcoal-700 hover:text-text-bright"
1025+
className="rounded p-0.5 text-text-dimmed transition hover:bg-charcoal-600 hover:text-text-bright"
10261026
>
10271027
<PlusIcon className="size-3.5" />
10281028
</button>
@@ -1163,10 +1163,12 @@ function CollapseToggle({ isCollapsed, onToggle }: { isCollapsed: boolean; onTog
11631163
return (
11641164
<div className="absolute -right-3 top-1/2 z-10 -translate-y-1/2">
11651165
{/* Vertical line to mask the side menu border */}
1166-
<div className={cn(
1167-
"pointer-events-none absolute left-1/2 top-1/2 h-10 w-px -translate-y-1/2 transition-colors duration-200",
1168-
isHovering ? "bg-charcoal-750" : "bg-background-bright"
1169-
)} />
1166+
<div
1167+
className={cn(
1168+
"pointer-events-none absolute left-1/2 top-1/2 h-10 w-px -translate-y-1/2 transition-colors duration-200",
1169+
isHovering ? "bg-charcoal-750" : "bg-background-bright"
1170+
)}
1171+
/>
11701172
<TooltipProvider disableHoverableContent>
11711173
<Tooltip>
11721174
<TooltipTrigger asChild>

0 commit comments

Comments
 (0)