Problems with gutters (CM6)

Line numbers in CodeMirror 6 are displaying incorrectly (look at the photo)

I do not add any style to CM6, my code:
import {EditorState, EditorView, basicSetup} from “@codemirror/basic-setup”;

state=EditorState.create({
    extensions: basicSetup
  });

editor = new EditorView({
  parent: document.getElementById("editor"),
  state: state
})

I don’t know why gutters are too small, is that a bug or I am doing something wrong?

That is pretty much how the editor on the website is being created, so I’m not sure what is going wrong. Which browser is this and does it help you disable other stylesheets on the page?

Disable my stylesheet helps. Now CM6 gutters are displaing correctly, but what I should to edit in stylesheet?

I don’t know—I’d be curious to know too. You should be able to find out via the browser devtools.

Problem solved, remove declaration:
body
{
overflow: hidden;
}
helped. Thank for help!