Add paige.main.table_of_contents.max_width param

This commit is contained in:
Will Faught
2023-02-05 15:12:39 -08:00
parent a276e05101
commit 643eb4842e
2 changed files with 9 additions and 2 deletions

View File

@@ -33,7 +33,13 @@ section.paige-content > blockquote p:last-of-type {
}
{{ with $page.Param "paige.content_max_width" }}
section.paige-content, section.paige-toc {
section.paige-content {
max-width: {{ . }};
}
{{ end }}
{{ with $page.Param "paige.main.table_of_contents.max_width" }}
section.paige-toc {
max-width: {{ . }};
}
{{ end }}