Bullet and text space

Hello everyone
I would greatly appreciate help with the CSS code to fix the space between the bullet - of the list and the text itself
so it will look something like

  • sdfkdsfk

i mean the space betwin the bullet and the text

and not
-sdfdsfsdf

I’ve been checking the forum here for an hour and haven’t found a suitable code, I don’t understand programming at all…
Thank you

try this snippet. change the margin-right accordingly

.cm-formatting-list.cm-formatting-list-ul {
	margin-right: 4px;
}
.markdown-rendered .list-bullet {
	margin-right: 4px;
}

also, this guide, even though on old pre v1.0.x, still good reference

4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.