0

Change cursor to pointer

This commit is contained in:
Gabe Kangas 2022-05-26 11:31:45 -07:00
parent b3407cbdea
commit 5a51b2d779
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -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>