Add Inter 600, fix ChatPaneHeader font weight

This commit is contained in:
Alex Gleason 2022-12-14 10:12:24 -06:00
parent 5418e49234
commit 463504346c
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 4 additions and 5 deletions

View file

@ -37,11 +37,9 @@ const ChatPaneHeader = (props: IChatPaneHeader) => {
data-testid='title'
{...buttonProps}
>
{typeof title === 'string' ? (
<Text weight='semibold'>
{title}
</Text>
) : (title)}
<Text weight='semibold' tag='div'>
{title}
</Text>
{(typeof unreadCount !== 'undefined' && unreadCount > 0) && (
<HStack alignItems='center' space={2}>

View file

@ -4,6 +4,7 @@
@import '~@fontsource/inter/300.css';
@import '~@fontsource/inter/400.css';
@import '~@fontsource/inter/500.css';
@import '~@fontsource/inter/600.css';
@import '~@fontsource/inter/700.css';
@import '~@fontsource/inter/900.css';