fix(Playroom): add overflow hidden to album cover container for improved layout

This commit is contained in:
Astrian Zheng 2025-05-26 20:42:05 +10:00
parent bb40342725
commit ff51653326
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -324,7 +324,7 @@ watch(() => playQueueStore.currentIndex, () => {
<template>
<!-- Background remains unchanged -->
<div class="z-0 absolute top-0 left-0 w-screen h-screen" v-if="getCurrentTrack().album?.coverDeUrl">
<div class="z-0 absolute top-0 left-0 w-screen h-screen overflow-hidden" v-if="getCurrentTrack().album?.coverDeUrl">
<img class="w-full h-full blur-2xl object-cover scale-110" :src="getCurrentTrack().album?.coverDeUrl" />
<div class="bg-transparent w-full h-full absolute top-0 left-0" />
</div>