diff --git a/apps/web/src/components/editor/preview-panel.tsx b/apps/web/src/components/editor/preview-panel.tsx index 375fc0e0..db2da954 100644 --- a/apps/web/src/components/editor/preview-panel.tsx +++ b/apps/web/src/components/editor/preview-panel.tsx @@ -637,89 +637,82 @@ function PreviewToolbar({ }; return ( -
- {/* Timeline Controls */} -
- {/* Time Display */} -
- - {formatTimeCode( - currentTime, - "HH:MM:SS:FF", - activeProject?.fps || 30, - )} - - / - - {formatTimeCode( - totalDuration, - "HH:MM:SS:FF", - activeProject?.fps || 30, - )} - -
+
+ {/* Time Display */} +
+ + {formatTimeCode(currentTime, "HH:MM:SS:FF", activeProject?.fps || 30)} + + / + + {formatTimeCode( + totalDuration, + "HH:MM:SS:FF", + activeProject?.fps || 30, + )} + +
- {/* Transport Controls */} -
- - - -
+ {/* Transport Controls */} +
+ + + +
- {/* Timeline Scrubber */} -
+ {/* Timeline Scrubber */} +
+
-
-
-
+ className="absolute top-0 left-0 h-full bg-primary rounded-full transition-all duration-100" + style={{ width: `${progress}%` }} + /> +
- {/* Bottom Row - Aspect Ratio and Fullscreen */} -
+ {/* Aspect Ratio and Fullscreen Controls */} +
{!isExpanded && ( <>