obsidian-banners
obsidian-banners copied to clipboard
First line number in gutter is off
The first line number in the gutter of Editing View is not pushed down along with the other numbers in the gutter.
I fixed it in the pic that I shared with the following CSS.
.cm-lineNumbers .cm-gutterElement:nth-child(2) {
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
There might be a better way of doing this, but I just wanted to bring this up. 👀