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:
parent
6791c2bcfa
commit
c17ee46519
2 changed files with 11 additions and 0 deletions
|
@ -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',
|
||||||
|
},
|
||||||
}));
|
}));
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue