Skip to content

Commit

Permalink
adjust the dimension of the skeleton loader
Browse files Browse the repository at this point in the history
  • Loading branch information
nwaughachukwuma committed Nov 12, 2024
1 parent 5d5c7b2 commit c435018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/lib/components/AudiocastPageSkeletonLoader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="h-8 w-48 bg-gray-800 rounded animate-pulse mb-8" />

<!-- {/* Player container */} -->
<div class="w-full rounded-lg bg-gray-800 p-4 mb-6">
<div class="w-full rounded-lg bg-gray-800 p-4 mb-4">
<!-- {/* Player controls and progress row */} -->
<div class="flex items-center gap-4 mb-2">
<!-- {/* Play button skeleton */} -->
Expand All @@ -21,15 +21,15 @@
</div>

{#each Array(3).fill(0) as _, index (index)}
<div class="mb-4">
<div class="mb-2">
<div class="flex items-center justify-between p-4 border-b border-gray-800">
<div class="h-6 w-32 bg-gray-800 rounded animate-pulse" />
<div class="w-6 h-6 bg-gray-800 rounded animate-pulse" />
</div>
</div>
{/each}

<div class="flex gap-4 mt-6">
<div class="flex gap-3 mt-6">
<div class="w-12 h-12 bg-gray-800 rounded animate-pulse" />
<div class="w-12 h-12 bg-gray-800 rounded animate-pulse" />
<div class="w-40 h-12 bg-gray-800 rounded animate-pulse" />
Expand Down

0 comments on commit c435018

Please sign in to comment.