Add underline to item list description links

Oops, right, a bit of a CSS oversight! Added now!
This commit is contained in:
Emi Matchu 2021-09-06 14:08:43 -07:00
parent 315744b4f7
commit 2bd573690e

View file

@ -86,6 +86,10 @@ function MarkdownAndSafeHTML({ children, onBeforeSanitizeNode }) {
ul { ul {
margin-left: 2em; margin-left: 2em;
} }
a {
text-decoration: underline;
}
`} `}
/> />
)} )}