bennyxguo / Obsidian-Obsidianite

🎨 Obsidian.md custom theme, it's dark and simple but yet still stays sparkles!
MIT License
271 stars 47 forks source link

Alignment of list items #71

Closed krokofant closed 1 year ago

krokofant commented 1 year ago
- hello
    - dwdqw
    - [ ] foo
        - [ ] 
    - hello
        - foo
    - bar

This is rendered like this for me image

Here is another which highlights the alignment image

If I apply these css changes:

.markdown-source-view.mod-cm6 .list-bullet:after {
  transform: translate(35%, -50%);
}

.HyperMD-list-line:not(.HyperMD-task-line) span[class^="cm-list-"]::before {
  content: "\00A0";
}

Then it looks like this image image

Can I submit a PR for these changes @bennyxguo ?