Spacing between document rows (paragraphs)

Is there a way to change the amount of vertical space between projects, tasks and notes?

Thanks

Bob

Yes, there are a few options:

  • line-height-multiple
  • paragraph-spacing-before
  • paragraph-spacing-after

Here’s an example of them all together (probably not what you want), but a good starting point for tests.

item[data-type=project] {
  line-height-multiple: 3;
  paragraph-spacing-before: 50;
  paragraph-spacing-after: 10;
}

Generally line height effects the underlying line height, caret height, and selection rect height for that line. The paragraph space before/after add spacing before/after.

Thanks for the rapid response

Bob