You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it's only possible with custom CSS code. Example:
@layer defaults {
@import"stream-chat-angular/src/assets/styles/v2/scss/index.scss";
}
@layer overrides {
.str-chat__message {
// Display reactions under the message.str-chat__message-inner {
grid-template-areas:
"message-bubble options""reactions reactions";
}
&.str-chat__message--me {
.str-chat__message-inner {
grid-template-areas:
"options message-bubble""reactions reactions";
}
}
}
.str-chat__message--with-reactions {
// Add whitespace after message for separationmargin-block-end: 0.5rem;
// Fragile CSS to ensure that avatar is positioned in line with the message bubble.str-chat__message-sender-avatar {
padding-block-end: 32px;
}
}
}
The proper solution requires SDK support.
Shortcomings:
Fragile CSS
Message grouping isn't perfect, see screenshot
The text was updated successfully, but these errors were encountered:
szuperaz
changed the title
Display message reactions at the bottom of the message, not at the top
Make it possible to display message reactions at the bottom of the message
Nov 3, 2023
Currently, it's only possible with custom CSS code. Example:
The proper solution requires SDK support.
Shortcomings:
The text was updated successfully, but these errors were encountered: