Merge pull request #1084 from Hexastack/feat/add-url-styling-in-inbox-chat-messages

fix: rename CSS class for outgoing message content to use CustomContent
This commit is contained in:
Med Marrouchi 2025-06-02 14:36:02 +01:00 committed by GitHub
commit 1a46b01bfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ const componentMap: { [key in FileType]: FC<AttachmentInterface> } = {
<Box> <Box>
<Typography <Typography
component="span" component="span"
className="cs-message__text-content" className="cs-message__custom-content"
mr={2} mr={2}
> >
{props.name} {props.name}

View File

@ -20,7 +20,7 @@ div .cs-message--outgoing .cs-message__content {
background-color: var(--cs-message-outgoing-color) !important; background-color: var(--cs-message-outgoing-color) !important;
} }
div .cs-message--outgoing .cs-message__text-content { div .cs-message--outgoing .cs-message__custom-content {
color: var(--cs-message-outgoing-text-color) !important; color: var(--cs-message-outgoing-text-color) !important;
} }