We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 660d11a commit 287a98aCopy full SHA for 287a98a
1 file changed
styles/prose.css
@@ -593,7 +593,11 @@
593
color: var(--text);
594
}
595
.runnable-editor-host .CodeMirror-gutters {
596
- background: transparent;
+ /* Opaque, matching the editor background — the gutter is pinned (fixedGutter)
597
+ while the code scrolls under it. A transparent gutter let horizontally
598
+ scrolled code bleed through behind the line numbers, looking like a
599
+ collision. An opaque fill keeps the number column clean during h-scroll. */
600
+ background: var(--code-bg);
601
border-right: 1px solid var(--code-border);
602
603
.runnable-editor-host .CodeMirror-linenumber {
0 commit comments