feat: update design from ref

This commit is contained in:
2026-06-11 12:16:34 +05:00
parent a5be6d7552
commit 2a209247d3
38 changed files with 1792 additions and 57 deletions
+21
View File
@@ -0,0 +1,21 @@
---
interface Props {
class?: string
}
const { class: className } = Astro.props as Props
---
<div
aria-hidden="true"
class:list={[
'flex h-4 w-full items-center justify-between overflow-hidden px-2 opacity-60',
className,
]}
>
{
Array.from({ length: 60 }).map(() => (
<span class="h-1.5 w-1.5 shrink-0 rounded-full bg-background shadow-[inset_0_1px_2px_rgba(0,0,0,0.35)]" />
))
}
</div>