This commit is contained in:
jxxghp
2024-01-05 20:46:23 +08:00
parent 9b753a8f5b
commit d02fe55a1e

View File

@@ -56,10 +56,10 @@ function goPlay() {
<VCardText
class="w-full flex flex-col flex-wrap justify-end align-left text-white absolute bottom-0 cursor-pointer pa-2"
>
<h1 class="mb-1 text-white font-extrabold text-xl line-clamp-2 overflow-hidden text-ellipsis ...">
<h1 class="mb-1 text-white text-shadow font-extrabold text-xl line-clamp-2 overflow-hidden text-ellipsis ...">
{{ props.media?.title }}
</h1>
<span>{{ props.media?.subtitle }}</span>
<span class="text-shadow">{{ props.media?.subtitle }}</span>
</VCardText>
</VImg>
</template>
@@ -75,3 +75,9 @@ function goPlay() {
</template>
</VHover>
</template>
<style lang="scss">
.text-shadow{
text-shadow:1px 1px #777;
}
</style>