Reduce size of timestamp

This commit is contained in:
Chewbacca 2022-12-13 11:05:11 -05:00 committed by Alex Gleason
parent 90513f1807
commit f0a057d685
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -208,7 +208,7 @@ const ChatMessageList: React.FC<IChatMessageList> = ({ chat }) => {
return emojify(formatted, emojiMap.toJS());
};
const renderDivider = (key: React.Key, text: string) => <Divider key={key} text={text} textSize='sm' />;
const renderDivider = (key: React.Key, text: string) => <Divider key={key} text={text} textSize='xs' />;
const handleCopyText = (chatMessage: ChatMessageEntity) => {
if (navigator.clipboard) {