From c5372d1405c5aa2c8b98db4170f8d266b5204852 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sat, 11 Feb 2023 15:51:23 -0600 Subject: [PATCH] Fix:Series,Collection,Playlist title scaling #1440 --- client/components/cards/LazyCollectionCard.vue | 2 +- client/components/cards/LazyPlaylistCard.vue | 6 +++--- client/components/cards/LazySeriesCard.vue | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/components/cards/LazyCollectionCard.vue b/client/components/cards/LazyCollectionCard.vue index 006e29e2..b4a223c8 100644 --- a/client/components/cards/LazyCollectionCard.vue +++ b/client/components/cards/LazyCollectionCard.vue @@ -18,7 +18,7 @@
-

{{ title }}

+

{{ title }}

diff --git a/client/components/cards/LazyPlaylistCard.vue b/client/components/cards/LazyPlaylistCard.vue index b65d5d44..136bb93a 100644 --- a/client/components/cards/LazyPlaylistCard.vue +++ b/client/components/cards/LazyPlaylistCard.vue @@ -15,7 +15,7 @@
-

{{ title }}

+

{{ title }}

@@ -50,8 +50,8 @@ export default { return 0.875 }, sizeMultiplier() { - if (this.bookCoverAspectRatio === 1) return this.width / (120 * 1.6 * 2) - return this.width / 240 + if (this.bookCoverAspectRatio === 1) return this.width / (120 * 1.6) + return this.width / 120 }, title() { return this.playlist ? this.playlist.name : '' diff --git a/client/components/cards/LazySeriesCard.vue b/client/components/cards/LazySeriesCard.vue index e87892a1..db5e3ec5 100644 --- a/client/components/cards/LazySeriesCard.vue +++ b/client/components/cards/LazySeriesCard.vue @@ -21,7 +21,7 @@
-

{{ displayTitle }}

+

{{ displayTitle }}

{{ displaySortLine }}