1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-08 23:36:49 +01:00
elk/components/status/StatusCardSkeleton.vue
2022-11-27 13:02:19 +08:00

16 lines
519 B
Vue

<template>
<div flex flex-col gap-2 px-4>
<div flex gap-4>
<div>
<div w-12 h-12 rounded-full class="skeleton-loading-bg" />
</div>
<div flex="~ col 1 gap-2" pb2 min-w-0>
<div flex class="skeleton-loading-bg" h-5 w-20 rounded />
<div flex class="skeleton-loading-bg" h-4 w-full rounded />
<div flex class="skeleton-loading-bg" h-4 w="4/5" rounded />
<div flex class="skeleton-loading-bg" h-4 w="2/5" rounded />
</div>
</div>
</div>
</template>