diff --git a/desktop/app/src/ui/components/Markdown.tsx b/desktop/app/src/ui/components/Markdown.tsx index ed7cca53d..f500229d2 100644 --- a/desktop/app/src/ui/components/Markdown.tsx +++ b/desktop/app/src/ui/components/Markdown.tsx @@ -30,8 +30,8 @@ const Heading = styled.div<{level: number}>((props) => ({ fontWeight: props.level > 1 ? 'bold' : 'normal', })); const ListItem = styled.li({ - 'list-style-type': 'circle', - 'list-style-position': 'inside', + listStyleType: 'circle', + listStylePosition: 'inside', marginLeft: 10, }); const Strong = styled.span({