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>
<Container
size="lg"
h="calc(100vh - 100px)"
style={{ display: 'flex', flexDirection: 'column' }}
style={{ display: 'flex', flexDirection: 'column', maxWidth: 800 }}
>
<ScrollArea
flex={1}
@@ -925,7 +924,7 @@ export default function ChatLayout() {
maxWidth: '75%',
}}
>
<Text size="sm" style={{ lineHeight: 1.5 }}>
<Text size="md" style={{ lineHeight: 1.5 }}>
{message.content}
</Text>
</Paper>
+4 -4
View File
@@ -219,14 +219,14 @@ function MarkdownContent({ content }: { content: string }) {
</Title>
),
h6: ({ children }) => (
<Text size="sm" fw={700} mb="xs">
<Text size="md" fw={700} mb="xs">
{children}
</Text>
),
// Paragraphs and text
p: ({ children }) => (
<Text size="sm" style={{ lineHeight: 1.6, marginBottom: '0.5em' }}>
<Text size="md" style={{ lineHeight: 1.6, marginBottom: '0.5em' }}>
{children}
</Text>
),
@@ -267,13 +267,13 @@ function MarkdownContent({ content }: { content: string }) {
return <ul className={classes.taskList}>{children}</ul>;
}
return (
<List size="sm" mb="xs">
<List size="md" mb="xs">
{children}
</List>
);
},
ol: ({ children }) => (
<List type="ordered" size="sm" mb="xs">
<List type="ordered" size="md" mb="xs">
{children}
</List>
),