obsidian-banners icon indicating copy to clipboard operation
obsidian-banners copied to clipboard

First line number in gutter is off

Open CabbageCanFly opened this issue 2 years ago • 0 comments

image

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. 👀

CabbageCanFly avatar Aug 17 '22 21:08 CabbageCanFly