From e1ac000cd1f15642218e80ded98ee19188cf2b17 Mon Sep 17 00:00:00 2001 From: Maria Mironova <18009169+webstalt@users.noreply.github.com> Date: Fri, 10 Feb 2023 15:31:11 +0300 Subject: [PATCH] fix(chat) keep avatar width inside flex container (#12891) Co-authored-by: Maria Mironova --- react/features/chat/components/web/ChatMessageGroup.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/react/features/chat/components/web/ChatMessageGroup.tsx b/react/features/chat/components/web/ChatMessageGroup.tsx index 5abbeb936..c9b9039f7 100644 --- a/react/features/chat/components/web/ChatMessageGroup.tsx +++ b/react/features/chat/components/web/ChatMessageGroup.tsx @@ -45,6 +45,7 @@ const useStyles = makeStyles()(theme => { avatar: { margin: `${theme.spacing(1)} ${theme.spacing(2)} ${theme.spacing(3)} 0`, position: 'sticky', + flexShrink: 0, top: 0 } };