Add vibrant color into media card title
This commit is contained in:
18
app/components/ui/internal/SkeletonMediaImageCard.vue
Normal file
18
app/components/ui/internal/SkeletonMediaImageCard.vue
Normal file
@ -0,0 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
import { cn } from '~/lib/utils';
|
||||
|
||||
interface Props {
|
||||
class?: string;
|
||||
}
|
||||
|
||||
const props = defineProps<Props>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div :class="cn('rounded-lg h-full overflow-hidden w-full max-w-64', props.class)">
|
||||
<div class="flex flex-col gap-2 h-full pb-6">
|
||||
<Skeleton class="h-full w-full" />
|
||||
<Skeleton class="h-6 w-3/4" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user