From f3c3d841f23eaf2557efad8db41dae55e5b4575b Mon Sep 17 00:00:00 2001 From: qier222 Date: Fri, 29 Jan 2021 09:57:14 +0800 Subject: [PATCH] fix: album cover size issue in lyrics page --- src/views/lyrics.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/lyrics.vue b/src/views/lyrics.vue index 29ea834..ff2b8a8 100644 --- a/src/views/lyrics.vue +++ b/src/views/lyrics.vue @@ -173,7 +173,7 @@ export default { return this.player.currentTrack; }, imageUrl() { - return this.player.currentTrack.al.picUrl + "?param=1024x1024"; + return this.player.currentTrack.al.picUrl + "?param=1024y1024"; }, progress: { get() { @@ -433,7 +433,9 @@ export default { img { border-radius: 0.75em; width: 54vh; + height: 54vh; user-select: none; + object-fit: cover; } .shadow { position: absolute;