add card verso
Some checks failed
Deploy App / build (push) Failing after 1m18s
Deploy App / deploy (push) Has been skipped

This commit is contained in:
valere
2025-09-30 12:37:24 +02:00
parent c028fda489
commit bd5ed09d5e

View File

@@ -1,6 +1,7 @@
<template> <template>
<article <article class="relative">
class="backdrop-blur-sm -mt-12 z-10 card w-56 h-80 p-3 bg-opacity-10 bg-white rounded-2xl shadow-lg flex flex-col overflow-hidden"> <main
class="absolute top-0 backdrop-blur-sm z-40 -mt-12 z-10 card w-56 h-80 p-3 bg-opacity-10 bg-white rounded-2xl shadow-lg flex flex-col overflow-hidden">
<!-- Cover --> <!-- Cover -->
<figure class="flex-1 overflow-hidden rounded-t-xl"> <figure class="flex-1 overflow-hidden rounded-t-xl">
<img :src="coverUrl" alt="Pochette de l'album" class="w-full h-full object-cover object-center" /> <img :src="coverUrl" alt="Pochette de l'album" class="w-full h-full object-cover object-center" />
@@ -13,6 +14,15 @@
{{ props.track.artist.name }} {{ props.track.artist.name }}
</p> </p>
</div> </div>
</main>
<footer
class="absolute top-0 ml-32 backdrop-blur-sm -mt-12 z-10 card w-56 h-80 p-3 bg-opacity-10 bg-white rounded-2xl shadow-lg flex flex-col overflow-hidden">
<!-- Back -->
<div class="h-full flex p-16 text-center bg-slate-800 rounded-xl">
<img src="/favicon.svg" />
</div>
</footer>
</article> </article>
</template> </template>