blob: 6bfd12d188d82eba9fe0c52779d4498b0f1eb873 [file]
<script lang="ts">
</script>
<div class="flex items-baseline gap-1 text-gray-400">
{#each [0, 200, 400] as delay}
<span
class="loader-animation w-[4px] h-[4px] bg-gray-400 rounded-full"
style="animation-delay:{delay}ms "
></span>
{/each}
</div>
<style lang="postcss">
.loader-animation {
animation: dots-animation 700ms infinite alternate;
}
@keyframes dots-animation {
from {
opacity: 0.1;
}
to {
opacity: 1;
}
}
</style>