Space between paragraphs

Hello,
Where do I specify the space that I want to have between paragraphs for my site ?
Thanks
Philippe

1 Like

This is a base feature and it would be great to have it in the theme settings.

I used this CSS workaround for now:

p { &:not(:last-child)  {
        margin-bottom: 20px;
    }
}

This results in an added space at the bottom of a paragraph, but not with the last paragraph of one text element. You just vary the pixel-amount and make it smaller or greater.