Wrap title in header tag. Do not allow it to wrap. Closes #2474 #2446

This commit is contained in:
Gabe Kangas
2022-12-24 16:45:45 -08:00
parent fb1aca165f
commit 5c01efd3e2
2 changed files with 19 additions and 7 deletions

View File

@@ -20,10 +20,12 @@ export const Header: FC<HeaderComponentProps> = ({
}) => (
<AntHeader className={cn([`${styles.header}`], 'global-header')}>
<div className={`${styles.logo}`}>
<div id="header-logo">
<div id="header-logo" className={styles.logoImage}>
<OwncastLogo variant="contrast" />
</div>
<span id="global-header-text">{name}</span>
<h1 className={styles.title} id="global-header-text">
{name}
</h1>
</div>
{chatAvailable && !chatDisabled && <UserDropdown />}
{!chatAvailable && !chatDisabled && (