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
2 changes: 1 addition & 1 deletion src/screens/pip/ProgramBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default function ProgramBoard({ inc }: { inc: IncrementDetail }) {
{/* Toolbar: live status + presence + legend */}
<div style={{ display: "flex", alignItems: "center", gap: 12, marginBottom: 12, flexWrap: "wrap" }}>
<div style={{ display: "flex", alignItems: "center", gap: 7, fontSize: 12.5, fontWeight: 600, color: connected ? color.successInk : color.faint }}>
<span style={{ width: 8, height: 8, borderRadius: "50%", background: connected ? "#16A34A" : color.border2, boxShadow: connected ? "0 0 0 3px rgba(22,163,74,0.15)" : "none" }} />
<span style={{ width: 8, height: 8, borderRadius: "50%", background: connected ? color.success : color.border2, boxShadow: connected ? `0 0 0 3px ${color.successTint}` : "none" }} />
{connected ? "Live" : "Offline"}
</div>
<PresenceRow peers={peers} />
Expand Down
Loading