Skip to content

Commit

Permalink
fix: indent episodes in list with no artwork for uniform look
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann committed Feb 24, 2023
1 parent 78b6677 commit fb837a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ui/PodcastView/EpisodeListItem.svelte
Expand Up @@ -40,10 +40,12 @@
class="podcast-episode-thumbnail"
/>
</div>
{:else if showEpisodeImage}
<div class="podcast-episode-thumbnail-container"></div>
{/if}
<div
class="podcast-episode-information"
style:flex-basis={showEpisodeImage ? "80%" : ""}
style:flex-basis={"80%"}
>
<span class="episode-item-date">{date.toUpperCase()}</span>
<span class={`episode-item-title ${episodeFinished && "strikeout"}`}>{episode.title}</span>
Expand Down

1 comment on commit fb837a8

@vercel
Copy link

@vercel vercel bot commented on fb837a8 Feb 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.