diff --git a/client/components/app/LazyBookshelf.vue b/client/components/app/LazyBookshelf.vue
index 89040319..3482e8d1 100644
--- a/client/components/app/LazyBookshelf.vue
+++ b/client/components/app/LazyBookshelf.vue
@@ -167,7 +167,7 @@ export default {
return coverSize
},
bookHeight() {
- if (this.isCoverSquareAspectRatio) return this.bookWidth
+ if (this.isCoverSquareAspectRatio || this.entityName === 'playlists') return this.bookWidth
return this.bookWidth * 1.6
},
shelfPadding() {
@@ -178,7 +178,7 @@ export default {
return this.shelfPadding * 2
},
entityWidth() {
- if (this.entityName === 'series' || this.entityName === 'collections' || this.entityName === 'playlists') {
+ if (this.entityName === 'series' || this.entityName === 'collections') {
if (this.bookWidth * 2 > this.bookshelfWidth - this.shelfPadding) return this.bookWidth * 1.6
return this.bookWidth * 2
}
diff --git a/client/components/covers/PlaylistCover.vue b/client/components/covers/PlaylistCover.vue
index 95cfa298..44ae13c8 100644
--- a/client/components/covers/PlaylistCover.vue
+++ b/client/components/covers/PlaylistCover.vue
@@ -6,11 +6,12 @@
-