Skip to content

Commit

Permalink
fix ui
Browse files Browse the repository at this point in the history
  • Loading branch information
jxxghp committed Jan 5, 2024
1 parent 9b753a8 commit d02fe55
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/components/cards/BackdropCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -75,3 +75,9 @@ function goPlay() {
</template>
</VHover>
</template>

<style lang="scss">
.text-shadow{
text-shadow:1px 1px #777;
}
</style>

0 comments on commit d02fe55

Please sign in to comment.