Open file
/components/com_jcomments/tpl/default/style.css
Go to line 49 and find this:
#comments .comment-body {
color: #777777;
margin: 6px 0 0;
padding: 0 0 2px;
}
You can increase top and bottom padding like this
padding: 4px 0;
or even bigger
padding: 6px 0;
You decide how much space you want.