Tweak offline tag color and cursor
This commit is contained in:
@@ -64,3 +64,8 @@
|
|||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.offlineTag {
|
||||||
|
cursor: default;
|
||||||
|
color: var(--theme-color-components-text-on-light);
|
||||||
|
}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export const Header: FC<HeaderComponentProps> = ({
|
|||||||
{chatAvailable && !chatDisabled && <UserDropdown />}
|
{chatAvailable && !chatDisabled && <UserDropdown />}
|
||||||
{!chatAvailable && !chatDisabled && (
|
{!chatAvailable && !chatDisabled && (
|
||||||
<Tooltip title="Chat is available when the stream is live." placement="left">
|
<Tooltip title="Chat is available when the stream is live." placement="left">
|
||||||
<Tag style={{ cursor: 'pointer' }}>Chat offline</Tag>
|
<Tag className={styles.offlineTag}>Chat offline</Tag>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
)}
|
)}
|
||||||
</header>
|
</header>
|
||||||
|
|||||||
Reference in New Issue
Block a user