Skip to content

Commit

Permalink
πŸ’„(frontend) adjust few minor details
Browse files Browse the repository at this point in the history
Temporary styles, will be fixed when redesigning the UI.
Inspired by GMeet.
  • Loading branch information
lebaudantoine committed Oct 15, 2024
1 parent cde4b10 commit ec22abf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const ChatEntry: (
className={css({
display: 'flex',
flexDirection: 'column',
gap: '0.25rem',
})}
ref={ref}
title={time.toLocaleTimeString(locale, { timeStyle: 'full' })}
Expand All @@ -42,12 +43,13 @@ export const ChatEntry: (
className={css({
display: 'flex',
gap: '0.5rem',
paddingTop: '0.75rem',
})}
>
<Text bold={true} variant="sm">
{entry.from?.name ?? entry.from?.identity}
</Text>
<Text variant="sm">
<Text variant="sm" className={css({ color: 'gray.700' })}>
{time.toLocaleTimeString(locale, { timeStyle: 'short' })}
</Text>
</span>
Expand Down

0 comments on commit ec22abf

Please sign in to comment.