Update components to use the new style/color names

This commit is contained in:
Gabe Kangas
2022-07-10 16:42:35 -07:00
parent 9ec1d75d32
commit 255585cd9f
12 changed files with 75 additions and 47 deletions

View File

@@ -56,10 +56,12 @@ export default function StreamInfo({ isMobile }: Props) {
<div className={s.titleSection}>
<div className={s.title}>{name}</div>
<div className={s.subtitle}>
{title}
{title || 'Stream title or server description goes here'}
<CategoryIcon tags={tags} />
</div>
<div>{tags.length > 0 && tags.map(tag => <span key={tag}>#{tag}&nbsp;</span>)}</div>
<div className={s.tagList}>
{tags.length > 0 && tags.map(tag => <span key={tag}>#{tag}&nbsp;</span>)}
</div>
<SocialLinks links={socialHandles} />
</div>
</div>