This commit is contained in:
Zacharias-Brohn
2026-01-14 21:28:23 +01:00
parent ab6b9638ed
commit 2e0432fd35
2 changed files with 16 additions and 1 deletions
@@ -62,3 +62,11 @@
overflow-x: auto;
overflow-y: hidden;
}
/* Tables with rounded corners */
.table {
border-collapse: separate;
border-spacing: 0;
border-radius: var(--mantine-radius-md);
overflow: hidden;
}
+8 -1
View File
@@ -226,7 +226,14 @@ export function MarkdownMessage({ content, isStreaming = false }: MarkdownMessag
// Tables (GFM)
table: ({ children }) => (
<Table striped highlightOnHover withTableBorder withColumnBorders mb="md">
<Table
striped
highlightOnHover
withTableBorder
withColumnBorders
mb="md"
className={classes.table}
>
{children}
</Table>
),