diff --git a/apps/web/components/timeline-view.tsx b/apps/web/components/timeline-view.tsx index 7e509ab9..18437d77 100644 --- a/apps/web/components/timeline-view.tsx +++ b/apps/web/components/timeline-view.tsx @@ -226,10 +226,11 @@ function TimelineCard({ className={cn( "relative w-full text-left px-3 py-3 cursor-pointer transition-colors sm:px-4", indent - ? "bg-[#121820]/95 hover:bg-[#17202A]" + ? "bg-[#121820] hover:bg-[#17202A]" : "rounded-xl border border-[#252B35] bg-[#1B1F24] hover:bg-[#21262D] sm:rounded-2xl", indent && !isLast && "border-b border-[#252B35]/70", - isSelectionMode && canSelect && "pl-10", + indent && isLast && "rounded-b-xl sm:rounded-b-2xl", + isSelectionMode && canSelect && "pl-14 sm:pl-16", isSelectionMode && isSelected && "border-[#369BFD]/70 bg-[#00173C]/45", dmSansClassName(), )} @@ -237,7 +238,7 @@ function TimelineCard({ aria-pressed={isSelectionMode ? isSelected : undefined} > {isSelectionMode && canSelect && ( - + )} @@ -350,20 +351,27 @@ function GroupCard({ } return ( -
+
{isSelectionMode && selectableDocs.length > 0 && (