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.
2 parents 6f17495 + b3ea127 commit 10583bfCopy full SHA for 10583bf
packages/editor/CodeMirror/theme.ts
@@ -187,7 +187,8 @@ const createTheme = (theme: EditorTheme): Extension[] => {
187
// Allows editor content to be left-aligned with the toolbar on desktop.
188
// See https://github.com/laurent22/joplin/issues/11279
189
[`${editorNoGuttersSelector} .cm-line`]: theme.isDesktop ? {
190
- paddingLeft: 0,
+ // Note: This cannot be zero:
191
+ paddingLeft: '1px',
192
} : undefined,
193
194
// Override the default URL style when the URL is within a link
0 commit comments