Skip to content

Commit cc65567

Browse files
refactor: Fix list styles in markdown (#4802)
1 parent ec4b397 commit cc65567

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

site/src/components/Markdown/Markdown.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,15 @@ const useStyles = makeStyles((theme) => ({
119119
display: "flex",
120120
flexDirection: "column",
121121
gap: theme.spacing(1),
122+
marginBottom: theme.spacing(2),
123+
},
124+
125+
"& li > ul, & li > ol": {
126+
marginTop: theme.spacing(2),
127+
},
128+
129+
"& li > p": {
130+
marginBottom: 0,
122131
},
123132

124133
"& .prismjs": {

0 commit comments

Comments
 (0)