We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb0e23e commit 55e4ee7Copy full SHA for 55e4ee7
apps/desktop/src/components/right-panel/views/transcript-view.tsx
@@ -102,7 +102,12 @@ export function TranscriptView() {
102
<div className="flex text-md items-center gap-2">
103
Transcript
104
{isLive
105
- && <span className="inline-block w-3 h-3 rounded-full bg-red-500 animate-pulse"></span>}
+ && (
106
+ <div className="relative h-2 w-2">
107
+ <div className="absolute inset-0 rounded-full bg-red-500/30"></div>
108
+ <div className="absolute inset-0 rounded-full bg-red-500 animate-ping"></div>
109
+ </div>
110
+ )}
111
</div>
112
113
<div className="not-draggable flex items-center gap-2">
0 commit comments