<Box
className={classNames(css.Reply, className)}
alignItems="Center"
- alignSelf="Start"
gap="100"
{...props}
ref={ref}
);
export const ThreadIndicator = as<'div'>(({ ...props }, ref) => (
- <Box className={css.ThreadIndicator} alignItems="Center" alignSelf="Start" {...props} ref={ref}>
+ <Box className={css.ThreadIndicator} alignItems="Center" {...props} ref={ref}>
<Icon className={css.ThreadIndicatorIcon} src={Icons.Message} />
<Text size="T200">Threaded reply</Text>
</Box>
const bodyJSX = body ? scaleSystemEmoji(trimReplyFromBody(body)) : fallbackBody;
return (
- <Box direction="Column" {...props} ref={ref}>
+ <Box direction="Column" alignItems="Start" {...props} ref={ref}>
{threadRootId && (
<ThreadIndicator as="button" data-event-id={threadRootId} onClick={onClick} />
)}
style={{
backgroundColor: color.SurfaceVariant.ContainerActive,
maxWidth: toRem(placeholderWidth),
- width: '100%',
+ width: '100vw',
}}
/>
)}