Skip to content

Commit 2601eaf

Browse files
committed
Use a progress bar transition timing that's closer to browser timeupdate frequency
1 parent 1089ef0 commit 2601eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotcom-rendering/src/components/LoopVideoProgressBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const foregroundStyles = (progressPercentage: number) => css`
1818
width: ${progressPercentage}%;
1919
z-index: ${getZIndex('loop-video-progress-bar-foreground')};
2020
background-color: ${palette('--loop-video-progress-bar-value')};
21-
transition: width 0.3s linear;
21+
transition: width 0.25s linear;
2222
`;
2323

2424
type Props = {

0 commit comments

Comments
 (0)