Browse Source

Change cursor to pointer

pull/2032/head
Gabe Kangas 4 years ago
parent
commit
5a51b2d779
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 4
      web/components/ui/Header/Header.tsx

4
web/components/ui/Header/Header.tsx

@ -19,7 +19,9 @@ export default function HeaderComponent({ name = 'Your stream title', chatAvaila @@ -19,7 +19,9 @@ export default function HeaderComponent({ name = 'Your stream title', chatAvaila
{chatAvailable && <UserDropdown />}
{!chatAvailable && (
<Tooltip title="Chat is available when the stream is live." placement="left">
<Tag color="processing">Chat offline</Tag>
<Tag color="processing" style={{ cursor: 'pointer' }}>
Chat offline
</Tag>
</Tooltip>
)}
</Header>

Loading…
Cancel
Save