This commit is contained in:
Zacharias-Brohn
2026-01-15 13:51:10 +01:00
parent f920c37cf7
commit cf230fbd46
2 changed files with 6 additions and 7 deletions
+2 -3
View File
@@ -878,9 +878,8 @@ export default function ChatLayout() {
<AppShell.Main> <AppShell.Main>
<Container <Container
size="lg"
h="calc(100vh - 100px)" h="calc(100vh - 100px)"
style={{ display: 'flex', flexDirection: 'column' }} style={{ display: 'flex', flexDirection: 'column', maxWidth: 800 }}
> >
<ScrollArea <ScrollArea
flex={1} flex={1}
@@ -925,7 +924,7 @@ export default function ChatLayout() {
maxWidth: '75%', maxWidth: '75%',
}} }}
> >
<Text size="sm" style={{ lineHeight: 1.5 }}> <Text size="md" style={{ lineHeight: 1.5 }}>
{message.content} {message.content}
</Text> </Text>
</Paper> </Paper>
+4 -4
View File
@@ -219,14 +219,14 @@ function MarkdownContent({ content }: { content: string }) {
</Title> </Title>
), ),
h6: ({ children }) => ( h6: ({ children }) => (
<Text size="sm" fw={700} mb="xs"> <Text size="md" fw={700} mb="xs">
{children} {children}
</Text> </Text>
), ),
// Paragraphs and text // Paragraphs and text
p: ({ children }) => ( p: ({ children }) => (
<Text size="sm" style={{ lineHeight: 1.6, marginBottom: '0.5em' }}> <Text size="md" style={{ lineHeight: 1.6, marginBottom: '0.5em' }}>
{children} {children}
</Text> </Text>
), ),
@@ -267,13 +267,13 @@ function MarkdownContent({ content }: { content: string }) {
return <ul className={classes.taskList}>{children}</ul>; return <ul className={classes.taskList}>{children}</ul>;
} }
return ( return (
<List size="sm" mb="xs"> <List size="md" mb="xs">
{children} {children}
</List> </List>
); );
}, },
ol: ({ children }) => ( ol: ({ children }) => (
<List type="ordered" size="sm" mb="xs"> <List type="ordered" size="md" mb="xs">
{children} {children}
</List> </List>
), ),