Skip to content

Commit 1495e71

Browse files
authored
fix: use live-dot class for DA pulse animation in BlocksPage (#70)
1 parent 5b47524 commit 1495e71

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/pages/BlocksPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,9 +531,9 @@ export default function BlocksPage() {
531531
return (
532532
<td className="table-cell text-center">
533533
{included ? (
534-
<span className={`w-2 h-2 rounded-full bg-green-400 inline-block${flash ? ' animate-da-pulse' : ''}`} title={includedTitle} />
534+
<span className={`w-2 h-2 rounded-full bg-green-400 inline-block${flash ? ' live-dot' : ''}`} title={includedTitle} />
535535
) : (
536-
<span className={`w-2 h-2 rounded-full bg-yellow-400 inline-block${flash ? ' animate-da-pulse' : ''}`} title="Pending DA inclusion" />
536+
<span className={`w-2 h-2 rounded-full bg-yellow-400 inline-block${flash ? ' live-dot' : ''}`} title="Pending DA inclusion" />
537537
)}
538538
</td>
539539
);

0 commit comments

Comments
 (0)