Add ability to populate the content area in the page with a markdown file

This commit is contained in:
Gabe Kangas
2020-06-17 20:20:28 -07:00
parent 0cb2ab396c
commit b0a73a99b9
4 changed files with 27 additions and 2 deletions

View File

@@ -407,3 +407,12 @@ header h1 {
display: none;
}
}
/* Tailwind sets list styles to none. I don't know why. */
ol {
list-style: decimal;
}
ul {
list-style: unset;
}