Hello Edgaras,
If you are concerned by the display in "view mode" (and not only in "edit mode"), for instance the vertical display between a paragraph text and the first following bullet, you can customize the CSS value for top and bottom margin and padding.
For instance, I use the following value (in a tiddler tagged with $:/tags/Stylesheet)
/* Simple Paragraph */
.tc-tiddler-body p,
.tc-tiddler-preview-preview p {
margin: 0.8em 0 0 0;
padding: 0;
text-indent: 0;
}
/* Unordered lists */
.tc-tiddler-body ul,
.tc-tiddler-preview-preview ul {
margin: 0;
padding: 0 0 0 3em;
}
.tc-tiddler-body ul ul,
.tc-tiddler-preview-preview ul ul {
padding-left: 1.25em;
}
/* Ordered lists */
.tc-tiddler-body ol,
.tc-tiddler-preview-preview ol {
margin: 0;
padding: 0 0 0 3em;
}
.tc-tiddler-body ol ol,
.tc-tiddler-preview-preview ol ol {
padding-left: 1.25em;
}
/* Lists item */
.tc-tiddler-body li,
.tc-tiddler-preview-preview li {
margin: 0.2em 0 0 0;
padding: 0;
}
Best regards,
Eskha