Hi @tav! Yeah, this is easy to do with a snippet. I’ll look into making a theme setting to do this, but for now you can add this to a snippet and it’ll override the padding set by the theme:
.cc-pretty-preview .markdown-preview-section hr {
margin-top: 0;
margin-bottom: 0;
}
.cc-pretty-preview .markdown-preview-view h1 {
margin-top: 0;
margin-bottom: 0.25em;
}
.cc-pretty-preview .markdown-preview-view h2 {
margin-top: 0;
margin-bottom: 0.25em;
}
.cc-pretty-preview .markdown-preview-view h3 {
margin-top: 0;
margin-bottom: 0.25em;
}
.cc-pretty-preview .markdown-preview-view h4 {
margin-top: 0;
margin-bottom: 0.25em;
}
.cc-pretty-preview .markdown-preview-view h5 {
margin-top: 0;
margin-bottom: 0.25em;
}
.cc-pretty-preview .markdown-preview-view h6 {
margin-top: 0;
margin-bottom: 0.25em;
}