diff --git a/services/web/frontend/js/features/source-editor/extensions/empty-line-filler.ts b/services/web/frontend/js/features/source-editor/extensions/empty-line-filler.ts index 8365d59e88..94b839390e 100644 --- a/services/web/frontend/js/features/source-editor/extensions/empty-line-filler.ts +++ b/services/web/frontend/js/features/source-editor/extensions/empty-line-filler.ts @@ -68,8 +68,7 @@ export const emptyLineFiller = () => { ), EditorView.baseTheme({ '.ol-cm-filler': { - display: 'inline', - padding: '2px', + padding: '0 2px', }, }), ] diff --git a/services/web/frontend/js/features/source-editor/extensions/line-wrapping-indentation.ts b/services/web/frontend/js/features/source-editor/extensions/line-wrapping-indentation.ts index 2c0605994b..fc79588ef4 100644 --- a/services/web/frontend/js/features/source-editor/extensions/line-wrapping-indentation.ts +++ b/services/web/frontend/js/features/source-editor/extensions/line-wrapping-indentation.ts @@ -122,7 +122,7 @@ const lineIndentDecoration = (indent: number) => Decoration.line({ attributes: { // style: `text-indent: ${indent}ch hanging`, // "hanging" would be ideal, when browsers support it - style: `text-indent: -${indent}ch; padding-left: calc(${indent}ch + 4px)`, // add 4px to account for existing padding-left + style: `text-indent: -${indent}ch; padding-left: calc(${indent}ch + 6px)`, // add 6px to account for existing padding-left }, })