diff --git a/src/ui/components/Markdown.tsx b/src/ui/components/Markdown.tsx index c1c74a243..229b7a375 100644 --- a/src/ui/components/Markdown.tsx +++ b/src/ui/components/Markdown.tsx @@ -19,7 +19,8 @@ const Row = styled('div')({ marginBottom: 5, }); const Heading = styled('div')((props: {level: number}) => ({ - fontSize: Math.max(10, 20 - (props.level - 1) * 4), + fontSize: props.level === 1 ? 25 : 18, + marginTop: 10, marginBottom: 10, fontWeight: 'bold', }));