fix(Playroom): adjust album cover scaling effect for improved visual consistency

This commit is contained in:
Astrian Zheng 2025-05-27 09:32:42 +10:00
parent 401905fd43
commit ee5c8c22d2
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -321,7 +321,7 @@ watch(() => playQueueStore.currentIndex, () => {
<div ref="albumCover" class="relative">
<img :src="getCurrentTrack().album?.coverUrl" class="rounded-2xl shadow-2xl border border-white/20 w-96 h-96
transition-transform duration-300
" :class="playQueueStore.isPlaying ? 'scale-100' : 'scale-95'" />
" :class="playQueueStore.isPlaying ? 'scale-100' : 'scale-85'" />
</div>
<!-- Song info with enhanced styling -->