feat: [#110] give chat transcript a maximum width

This commit is contained in:
Jeremy Kahn 2023-03-15 09:23:54 -05:00 committed by Jeremy Kahn
parent 442f5406ec
commit dab98f02c2

View File

@ -56,7 +56,10 @@ export const ChatTranscript = ({
sx={theme => ({
display: 'flex',
flexDirection: 'column',
mx: 'auto',
paddingY: theme.spacing(1),
width: '100%',
maxWidth: theme.breakpoints.values.md,
})}
>
{messageLog.map((message, idx) => {