ptitlutins/app/components/molecules/EventPanelSkeleton.vue
2026-06-10 00:56:44 +02:00

29 lines
675 B
Vue

<template>
<div class="panel-skeleton" aria-hidden="true">
<Skeleton width="130px" height="0.7rem" />
<div v-for="i in 4" :key="i" class="card-skel">
<Skeleton width="92px" height="0.7rem" />
<Skeleton width="72%" height="1rem" />
<Skeleton width="46%" height="0.7rem" />
</div>
</div>
</template>
<style scoped>
.panel-skeleton {
display: flex;
flex-direction: column;
gap: 12px;
}
.card-skel {
display: flex;
flex-direction: column;
gap: 8px;
padding: 0.7rem 0.85rem;
background: var(--surface-card);
border: 1px solid var(--border-default);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-2);
}
</style>