mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-22 00:35:12 +02:00
Continue watching section reworked
This commit is contained in:
7
src/lib/components/ProgressBar.svelte
Normal file
7
src/lib/components/ProgressBar.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script lang="ts">
|
||||
export let progress = 0;
|
||||
</script>
|
||||
|
||||
<div class="h-1 bg-zinc-200 bg-opacity-20 rounded-full overflow-hidden">
|
||||
<div style={'width: ' + progress + '%'} class="h-full bg-zinc-200 bg-opacity-80" />
|
||||
</div>
|
||||
Reference in New Issue
Block a user