Skip to content

Commit 635b664

Browse files
authored
fix: rendering of list items in markdown and bold (#169)
1 parent 4de2de5 commit 635b664

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

template/css/main.css

+10-1
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,20 @@ a:hover {
9393
text-transform: uppercase;
9494
}
9595

96-
.markdown :is(ol, ul) {
96+
.markdown :is(ol) {
97+
padding-inline-start: 40px;
98+
list-style-type: decimal;
99+
}
100+
101+
.markdown :is(ul) {
97102
padding-inline-start: 40px;
98103
list-style-type: disc;
99104
}
100105

106+
.markdown :is(strong) {
107+
font-weight: bold;
108+
}
109+
101110
.expand {
102111
width: 20px;
103112
margin-bottom: -4px;

0 commit comments

Comments
 (0)