Skip to content

Commit

Permalink
[web] make progress bar antialias
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowsink committed Jun 7, 2024
1 parent 78a1ecf commit a7593da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/web/src/components/ThePlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const randomQuote = computed(() =>
<div class="w-full mb-4">
<div
class="h-px bg-white"
:style="{ width: (100 * (seek ?? 0)) / getDuration() + '%' }" />
:style="{ scale: ((seek ?? 0)) / getDuration(), translate: -50 + (100 * (seek ?? 0) / getDuration() / 2) + '%' }" />
</div>
<div class="flex items-center gap-3">VOL <RangeSlider v-model="volumeDbfs" :min="-60" :max="0" /></div>
</div>
Expand Down

0 comments on commit a7593da

Please sign in to comment.