chat: set timestamp size to 1 in unread-notice

This commit is contained in:
Matilde Park 2021-02-22 16:23:11 -05:00
parent 390a17b706
commit 4ac0a001bd

View File

@ -40,7 +40,7 @@ export const UnreadNotice = (props) => {
borderColor='blue'> borderColor='blue'>
<Text flexShrink='1' textOverflow='ellipsis' whiteSpace='pre' overflow='hidden' display='flex' cursor='pointer' onClick={onClick}> <Text flexShrink='1' textOverflow='ellipsis' whiteSpace='pre' overflow='hidden' display='flex' cursor='pointer' onClick={onClick}>
{unreadCount} new message{unreadCount > 1 ? 's' : ''} since{' '} {unreadCount} new message{unreadCount > 1 ? 's' : ''} since{' '}
<Timestamp stamp={stamp} color='blue' date={true} /> <Timestamp stamp={stamp} color='blue' date={true} fontSize={1} />
</Text> </Text>
<Text <Text
ml='4' ml='4'