Remove animated timeline dot

This commit is contained in:
2025-11-19 01:55:56 +08:00
parent 3425098006
commit 77bd180d97
2 changed files with 1 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ export function TimelineWrapper({ children, className }: TimelineWrapperProps) {
className="pointer-events-none absolute left-3 top-0 h-full w-[8px] rounded-full bg-blue-500/15 blur-[14px]" className="pointer-events-none absolute left-3 top-0 h-full w-[8px] rounded-full bg-blue-500/15 blur-[14px]"
aria-hidden="true" aria-hidden="true"
/> />
<span className="timeline-scroll-dot pointer-events-none absolute left-3 top-0 h-2 w-2 -translate-x-1/2 rounded-full bg-white shadow-[0_0_8px_rgba(96,165,250,0.7)]" aria-hidden="true" /> {/* Animated scroll cue removed */}*** End Patch
<div className="space-y-4"> <div className="space-y-4">
{items.map((child, index) => ( {items.map((child, index) => (

View File

@@ -46,10 +46,6 @@ body {
} }
} }
.timeline-scroll-dot {
animation: timeline-scroll 6s linear infinite;
will-change: transform, opacity;
}
.toc-target-highlight { .toc-target-highlight {
@apply bg-yellow-50/60 dark:bg-yellow-900/40 transition-colors duration-500; @apply bg-yellow-50/60 dark:bg-yellow-900/40 transition-colors duration-500;