Skip to content
This repository was archived by the owner on Jan 16, 2022. It is now read-only.

Commit 990f749

Browse files
authored
fix: markdown lists don't render bullet points (#614)
1 parent c12f18f commit 990f749

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/pages/Version/DetailContainer/Readme/Readme.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ const Wrapper = styled('div')<{ theme?: Theme }>(({ theme }) => ({
1616
background: theme?.palette.white,
1717
color: theme?.palette.black,
1818
padding: theme?.spacing(2, 3),
19+
ul: {
20+
listStyle: 'disc',
21+
},
1922
}));

src/pages/Version/DetailContainer/Readme/__snapshots__/Readme.spec.tsx.snap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Object {
99
padding: 16px 24px;
1010
}
1111
12+
.emotion-0 ul {
13+
list-style: disc;
14+
}
15+
1216
<body>
1317
<div>
1418
<div
@@ -24,6 +28,10 @@ Object {
2428
padding: 16px 24px;
2529
}
2630
31+
.emotion-0 ul {
32+
list-style: disc;
33+
}
34+
2735
<div>
2836
<div
2937
class="markdown-body emotion-0 emotion-1"

0 commit comments

Comments
 (0)