Skip to content

Commit

Permalink
Fix control bar layout for live streams
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Feb 3, 2025
1 parent 6b454d6 commit fe6691d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ControlBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ export default (props) => {
<span class="ap-time-remaining">{remainingTime()}</span>
</span>

<Show when={typeof props.progress === "number" || props.isSeekable}>
<span class="ap-progressbar">
<span class="ap-progressbar">
<Show when={typeof props.progress === "number" || props.isSeekable}>
<span class="ap-bar" onMouseDown={onMouseDown} onMouseMove={onMove}>
<span class="ap-gutter ap-gutter-empty"></span>
<span class="ap-gutter ap-gutter-full" style={gutterBarStyle()}></span>
Expand All @@ -162,8 +162,8 @@ export default (props) => {
)}
</For>
</span>
</span>
</Show>
</Show>
</span>

<span
class="ap-button ap-kbd-button ap-tooltip-container"
Expand Down

0 comments on commit fe6691d

Please sign in to comment.