prettydoc
prettydoc copied to clipboard
How to shrink the left margin using cayman theme
Hi
I am using the "cayman" theme with the following YAML:
output:
prettydoc::html_pretty:
toc: true
theme: cayman
I find that the left margin (the white space before the content) is quite large, is there a way to shrink (resize) this ?
I have googled this but didn't find anything that helped.
Thanks!
For the current unpublished version in the master branch, you can add a customized CSS with the following content:
.main-content, .toc {
max-width: 80rem;
}
You may adjust the value according to your own need. The default value in the theme is 64rem.