0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00

fix: markdown lists don't render bullet points (#2209)

This commit is contained in:
Sergio Moreno 2021-04-29 19:20:59 +02:00 committed by GitHub
parent 6791c2bcfa
commit c17ee46519
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -16,4 +16,7 @@ const Wrapper = styled('div')<{ theme?: Theme }>(({ theme }) => ({
background: theme?.palette.white, background: theme?.palette.white,
color: theme?.palette.black, color: theme?.palette.black,
padding: theme?.spacing(2, 3), padding: theme?.spacing(2, 3),
ul: {
listStyle: 'disc',
},
})); }));

View file

@ -9,6 +9,10 @@ Object {
padding: 16px 24px; padding: 16px 24px;
} }
.emotion-0 ul {
list-style: disc;
}
<body> <body>
<div> <div>
<div <div
@ -24,6 +28,10 @@ Object {
padding: 16px 24px; padding: 16px 24px;
} }
.emotion-0 ul {
list-style: disc;
}
<div> <div>
<div <div
class="markdown-body emotion-0 emotion-1" class="markdown-body emotion-0 emotion-1"