refactor: Fix list styles in markdown (#4802)

This commit is contained in:
Bruno Quaresma
2022-10-31 11:56:26 -04:00
committed by GitHub
parent ec4b397aa4
commit cc655672eb
@@ -119,6 +119,15 @@ const useStyles = makeStyles((theme) => ({
display: "flex",
flexDirection: "column",
gap: theme.spacing(1),
marginBottom: theme.spacing(2),
},
"& li > ul, & li > ol": {
marginTop: theme.spacing(2),
},
"& li > p": {
marginBottom: 0,
},
"& .prismjs": {