Skip to content

Commit e839ef0

Browse files
authored
Fix sidebar line-height. (#1182)
1 parent 769cc0a commit e839ef0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/renderer/html_handlebars/helpers/toc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fn write_li_open_tag(
191191
is_expanded: bool,
192192
is_affix: bool,
193193
) -> Result<(), std::io::Error> {
194-
let mut li = String::from("<li class=\"");
194+
let mut li = String::from("<li class=\"chapter-item ");
195195
if is_expanded {
196196
li.push_str("expanded ");
197197
}

src/theme/css/chrome.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ ul#searchresults span.teaser em {
423423
display: none;
424424
}
425425

426-
.chapter li.expanded {
426+
.chapter li.chapter-item {
427427
line-height: 1.5em;
428428
margin-top: 0.6em;
429429
}

0 commit comments

Comments
 (0)