Skip to content

Commit

Permalink
fix: markdown lists don't render bullet points (verdaccio#2209)
Browse files Browse the repository at this point in the history
  • Loading branch information
semoal authored Apr 29, 2021
1 parent 6791c2b commit c17ee46
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ const Wrapper = styled('div')<{ theme?: Theme }>(({ theme }) => ({
background: theme?.palette.white,
color: theme?.palette.black,
padding: theme?.spacing(2, 3),
ul: {
listStyle: 'disc',
},
}));
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Object {
padding: 16px 24px;
}
.emotion-0 ul {
list-style: disc;
}
<body>
<div>
<div
Expand All @@ -24,6 +28,10 @@ Object {
padding: 16px 24px;
}
.emotion-0 ul {
list-style: disc;
}
<div>
<div
class="markdown-body emotion-0 emotion-1"
Expand Down

0 comments on commit c17ee46

Please sign in to comment.