I would like to increase the space between the bullet and the text in each item of a list. This seems really difficult to achieve in the Live Editor and the best I’ve got is:
How about these, where you set the 20px and 8px to your liking?
/* Live Preview */
.markdown-source-view.is-live-preview .list-bullet {
padding-inline-end: 20px; /* ⬅️ set this one */
}
/* Reading */
.markdown-rendered ul {
--my-list-margin: 8px; /* ⬅️ set this one */
margin-inline-start: var(--my-list-margin);
}
.markdown-rendered ul > li > .list-bullet {
margin-inline-start: calc(-0.8em - var(--my-list-margin));
}
The last section (the one with calc) keeps the bullet in the same place as the default theme. But you can edit or remove that if you want reposition the bullet too in the Reading view.