diff --git a/src/app/features/room/message/Message.tsx b/src/app/features/room/message/Message.tsx index 44e93e61..5cfeecc8 100644 --- a/src/app/features/room/message/Message.tsx +++ b/src/app/features/room/message/Message.tsx @@ -791,7 +791,9 @@ export const Message = as<'div', MessageProps>( ); const avatarJSX = !collapse && messageLayout !== MessageLayout.Compact && ( - + ( )} {messageLayout === MessageLayout.Bubble && ( - - {headerJSX} + {msgContentJSX} )} diff --git a/src/app/features/room/message/styles.css.ts b/src/app/features/room/message/styles.css.ts index cd3c3bb7..dced5467 100644 --- a/src/app/features/room/message/styles.css.ts +++ b/src/app/features/room/message/styles.css.ts @@ -24,6 +24,10 @@ export const MessageOptionsBar = style([ }, ]); +export const BubbleAvatarBase = style({ + paddingTop: toRem(6), +}); + export const MessageAvatar = style({ cursor: 'pointer', });