Fix raw response viewer line padding (#4013)

This commit is contained in:
Opender Singh
2021-09-09 00:33:06 +12:00
committed by GitHub
parent d6ea92e46d
commit cf2387bbcd

View File

@@ -167,9 +167,13 @@
We need to restyle CodeMirrow for raw editor
*/
.raw-editor {
.CodeMirror-lines {
padding: var(--padding-md);
}
.CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
word-break: break-all;
line-height: normal;
padding: var(--padding-md);
padding: 1px 0px;
}
}