Skip to content

Commit

Permalink
fix: rendering of list items in markdown and bold (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
dweber019 authored Mar 30, 2021
1 parent 4de2de5 commit 635b664
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion template/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,20 @@ a:hover {
text-transform: uppercase;
}

.markdown :is(ol, ul) {
.markdown :is(ol) {
padding-inline-start: 40px;
list-style-type: decimal;
}

.markdown :is(ul) {
padding-inline-start: 40px;
list-style-type: disc;
}

.markdown :is(strong) {
font-weight: bold;
}

.expand {
width: 20px;
margin-bottom: -4px;
Expand Down

0 comments on commit 635b664

Please sign in to comment.