Skip to content

Commit

Permalink
fix: player thumbnail image now resizes to fit available space
Browse files Browse the repository at this point in the history
fix #67
  • Loading branch information
chhoumann committed Feb 24, 2023
1 parent ce599d8 commit 78b6677
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/ui/PodcastView/EpisodePlayer.svelte
Expand Up @@ -286,12 +286,15 @@
:global(.episode-image-container) {
width: 100%;
height: auto;
padding: 5% 20%;
padding: 5% 0%;
}
:global(.hover-container) {
width: 15rem;
height: 15rem;
min-width: 10rem;
min-height: 10rem;
width: 100%;
height: 100%;
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
Expand Down

0 comments on commit 78b6677

Please sign in to comment.