Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/routes/explore/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@
<span>Popular Cooks</span>
</h2>
{#if loadingCooks}
<div class="flex gap-4 overflow-x-auto overflow-y-visible py-2 -mx-4 px-4">
<div class="flex gap-4 overflow-x-auto pt-8 pb-4 -mt-6 -mx-4 px-4">
{#each Array(6) as _}
<div class="flex-shrink-0 w-20 flex flex-col items-center gap-2">
<div class="w-16 h-16 rounded-full animate-pulse skeleton-bg"></div>
Expand All @@ -425,7 +425,7 @@
</div>
{:else if popularCooks.length > 0}
<div
class="flex gap-4 overflow-x-auto overflow-y-visible py-2 -mx-4 px-4 scrollbar-hide touch-pan-x"
class="flex gap-4 overflow-x-auto pt-8 pb-4 -mt-6 -mx-4 px-4 scrollbar-hide touch-pan-x"
>
{#each popularCooks as cook}
<ProfileAvatar pubkey={cook.pubkey} showZapIndicator={false} />
Expand Down