Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export function TimelineView() {
"rounded-full bg-white hover:bg-neutral-50",
"text-neutral-700 border border-neutral-200",
"z-20 flex items-center gap-1",
"shadow-[inset_0_-4px_6px_-1px_rgba(255,0,0,0.1),inset_0_-2px_4px_-2px_rgba(255,0,0,0.1)]",
"shadow-sm",
isScrolledPastToday ? "top-2" : "bottom-2",
])}
variant="outline"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ import type {
} from "../../../../utils/timeline";

export const CurrentTimeIndicator = forwardRef<HTMLDivElement>((_, ref) => (
<div ref={ref} className="px-3 py-2" aria-hidden>
<div className="h-px bg-red-500" />
</div>
<div ref={ref} aria-hidden />
));

export function useCurrentTimeMs() {
Expand Down
Loading