79590832

Date: 2025-04-24 14:26:48
Score: 1
Natty:
Report link

I made it by css in codemirror 6.

My html structure

<div class="code-editor-container">
    <div class="cm-editor">...</div>
</div>

SCSS

.code-editor-container {
  background-color: white;
  border: 1px solid lightgray;
  position: relative;

  resize: vertical;
  overflow: auto;
  max-height: 600px;
  min-height: 2rem;

  .cm-editor {
    height: 100%;
    max-height: 600px;
  }
}

Picture

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladimír Mlázovský