Multi-line list items have alignment issues in editor

When bullet list items wrap to multiple lines, the continuation text doesn’t align properly with the original text. It’s offset slightly to the right. This happens with the default theme and no plugins enabled, so it seems to be a core issue.

What I see (exaggerated for better clarity):

- Some text
     Some additional text

What I want:

- Some text
  Some additional text

I’m not great with CSS, but through trial and error I found this snippet works:

.HyperMD-list-line-nobullet {
    text-indent: -1.45em !important;
    padding-inline-start: 1.25em !important;
}

Initially I tried absolute pixels (-23px and 20px) but that broke when I changed font size. The em units scale properly.

Is this a known issue or should I file it as a bug?

BTW, this very forum has the same issue, but only in the message editor. Lists in posted messages look as they should:

  • Some text
    Some additional text