Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/components/demo-countdown-pill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ export function DemoCountdownPill() {
if (isDemoDay()) {
return (
<span className="inline-flex items-center gap-1.5 rounded-full bg-persimmon-light px-3 py-1 font-mono text-xs text-persimmon">
<span className="h-1.5 w-1.5 animate-pulse rounded-full bg-persimmon" />
<span
aria-hidden="true"
className="h-1.5 w-1.5 animate-pulse rounded-full bg-persimmon"
/>
Demo day is live
</span>
);
Expand All @@ -37,7 +40,7 @@ export function DemoCountdownPill() {

return (
<span className="hidden items-center gap-1.5 rounded-full border border-border px-3 py-1 font-mono text-xs text-ink-faint sm:inline-flex">
<span className="h-1.5 w-1.5 rounded-full bg-stage-building" />
<span aria-hidden="true" className="h-1.5 w-1.5 rounded-full bg-stage-building" />
{label}
</span>
);
Expand Down