diff --git a/src/components/video-editor/timeline/Subrow.tsx b/src/components/video-editor/timeline/Subrow.tsx
index 1596d86..e865139 100644
--- a/src/components/video-editor/timeline/Subrow.tsx
+++ b/src/components/video-editor/timeline/Subrow.tsx
@@ -4,7 +4,7 @@ interface SubrowProps {
export default function Subrow({ children }: SubrowProps) {
return (
-
+
{children}
);
diff --git a/src/components/video-editor/timeline/TimelineEditor.tsx b/src/components/video-editor/timeline/TimelineEditor.tsx
index 41da160..d70a0b6 100644
--- a/src/components/video-editor/timeline/TimelineEditor.tsx
+++ b/src/components/video-editor/timeline/TimelineEditor.tsx
@@ -151,27 +151,42 @@ function PlaybackCursor({
- {/* Inverted triangle at top */}
-
+
{/* Subtle glow at top */}
-
+
);
@@ -180,9 +195,11 @@ function PlaybackCursor({
function TimelineAxis({
intervalMs,
videoDurationMs,
+ currentTimeMs,
}: {
intervalMs: number;
videoDurationMs: number;
+ currentTimeMs: number;
}) {
const { sidebarWidth, direction, range, valueToPixels } = useTimelineContext();
const sideProperty = direction === "rtl" ? "right" : "left";
@@ -225,7 +242,7 @@ function TimelineAxis({
return (
);
})}
@@ -273,7 +299,7 @@ function Timeline({
items,
videoDurationMs,
intervalMs,
- currentTimeMs,
+ currentTimeMs,
onSeek,
onSelectZoom,
selectedZoomId,
@@ -308,10 +334,10 @@ function Timeline({
-
+
{items.map((item) => (
@@ -338,7 +364,6 @@ export default function TimelineEditor({
zoomRegions,
onZoomAdded,
onZoomSpanChange,
- // Removed unused onZoomDelete prop
selectedZoomId,
onSelectZoom,
}: TimelineEditorProps) {
@@ -445,33 +470,33 @@ export default function TimelineEditor({
if (!videoDuration || videoDuration === 0) {
return (
-
-
Load a video to see timeline
+
+ Load a video to see timeline
);
}
return (
-
-
-